/* ============================================
   AISLING KOREA - BRAND Page Styles (Minimal)
   ============================================ */

/* Brand hero background override */
.hero-page .hero-bg {
    background-image: url('/images/brand-hero.jpg');
}

/* =====================================================
   Brand Cards Section
   ===================================================== */
.brand-cards {
    padding: 180px 0;
    background: #ffffff;
}

.brand-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Card base */
.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 65px 40px 65px;
    border: 1px solid #e0e0e0;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 15px;
}

a.brand-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* Logo area */
.brand-card-logo {
    margin-bottom: 24px;
    line-height: 1;
}

.brand-card-logo img {
    display: block;
    max-width: 280px;
    max-height: 72px;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.brand-card-logo-text {
    display: block;
    font-family: var(--s-font-primary, sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #aaaaaa;
    letter-spacing: 0.08em;
}

.brand-card-logo-text--serif {
    font-family: var(--s-font-display, 'Playfair Display', serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--s-color-primary, #8b1a1a);
}

/* Card title (subtitle from data) */
.brand-card-title {
    font-family: var(--s-font-primary, sans-serif);
    font-size: 1.65rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Description */
.brand-card-desc {
    font-size: 1.1rem;
    color: #777777;
    line-height: 1.5;
    margin: 0;
}

/* Placeholder cards */
.brand-card--placeholder {
    border-color: #e0e0e0;
    background: #fafafa;
}

.brand-card--placeholder .brand-card-logo img {
    opacity: 0.35;
    filter: grayscale(100%);
}

.brand-card-pending {
    font-size: 0.95rem;
    color: #999999;
    margin: 0;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 767px) {
    .brand-cards {
        padding: 60px 0 80px;
    }

    .brand-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-card {
        padding: 40px 28px 36px;
    }

    .brand-card-logo img {
        max-width: 200px;
        max-height: 56px;
    }

    .brand-card-logo-text--serif {
        font-size: 1.6rem;
    }


    .brand-card-title {
        font-size: 22px;
    }

    .brand-card-desc {
        font-size: 15px;
    }




}