.pp-guides {
    margin: 32px 0 8px;
}

.pp-guides__heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 12px;
}

.pp-guides__title {
    font-size: 22px;
    font-weight: 600;
    color: #0d2642;
    line-height: 1.3;
    margin: 0;
    text-wrap: balance;
}

.pp-guides__all {
    font-size: 14px;
    color: #92560e;
    text-decoration: none;
    white-space: nowrap;
    transition-property: color;
    transition-duration: 0.15s;
}

.pp-guides__all:hover,
.pp-guides__all:focus {
    color: #7c3a0a;
    text-decoration: underline;
}

.pp-guides__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
}

.pp-guides__item {
    padding: 16px 18px;
    background: #fef9f3;
    border: 1px solid #faeddf;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(61, 42, 15, 0.04);
}

.pp-guides__link {
    display: inline-block;
    padding: 2px 0 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: #92560e;
    text-decoration: none;
    text-wrap: balance;
    transition-property: color;
    transition-duration: 0.15s;
}

.pp-guides__link:hover,
.pp-guides__link:focus {
    color: #7c3a0a;
    text-decoration: underline;
}

.pp-guides__desc {
    font-size: 14px;
    color: #7a5028;
    line-height: 1.45;
    margin: 4px 0 0;
    text-wrap: pretty;
}

@media (max-width: 599px) {
    .pp-guides__list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
