.pp-brand-index__hero {
    padding: 48px 0 16px;
    background: #ffffff;
}

.pp-brand-index__h1 {
    text-align: center;
    color: #0d2642;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}

.pp-brand-index__subtitle {
    max-width: 720px;
    margin: 0 auto 32px;
    padding: 0 16px;
    text-align: center;
    color: #5b4a2c;
    font-size: 16px;
    line-height: 1.5;
}

.pp-brand-index__container {
    padding-bottom: 48px;
}

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

.pp-brand-index__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #f0d9b5;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    min-width: 0;
}

.pp-brand-index__card:hover {
    box-shadow: 0 4px 16px rgba(232, 118, 10, 0.12);
    transform: translateY(-2px);
}

.pp-brand-index__card-link {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 16px;
    color: inherit;
    text-decoration: none;
}

.pp-brand-index__card-link:hover,
.pp-brand-index__card-link:focus {
    text-decoration: none;
    color: inherit;
}

.pp-brand-index__card-logo {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 0 12px;
}

.pp-brand-index__card-name {
    margin: 0 0 8px;
    color: #0d2642;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.pp-brand-index__card-desc {
    margin: 0;
    color: #5b4a2c;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pp-brand-index__card-cta {
    display: block;
    margin: 0 16px 12px;
    padding: 10px 16px;
    text-align: center;
    background: #fef9f3;
    color: #0d2642;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #f0d9b5;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.pp-brand-index__card-cta:hover,
.pp-brand-index__card-cta:focus {
    background: #faeddf;
    border-color: #e7c98c;
    color: #0d2642;
    text-decoration: none;
}

.pp-brand-index__card-website-line {
    margin: 0;
    padding: 0 20px 16px;
    font-size: 12px;
    line-height: 1.4;
    color: #8a7c5e;
    text-align: center;
}

.pp-brand-index__card-website-label {
    margin-right: 4px;
}

.pp-brand-index__card-website {
    color: #5b4a2c;
    text-decoration: none;
    border-bottom: 1px dotted #d9c89c;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.pp-brand-index__card-website:hover,
.pp-brand-index__card-website:focus {
    color: #0d2642;
    border-bottom-color: #5b4a2c;
    text-decoration: none;
}

@media (max-width: 991px) {
    .pp-brand-index__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pp-brand-index__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .pp-brand-index__h1 {
        font-size: 28px;
    }

    .pp-brand-index__subtitle {
        font-size: 15px;
    }

    .pp-brand-index__card-logo {
        width: 80px;
        height: 80px;
    }
}
