/* ===================================================================
   Licenses & Disclosures Page Styles
   =================================================================== */

:root {
    --primary-color: #D4A574;
    --primary-color-dark: #B8945F;
}

/* Hero Banner */
.licenses-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/assets/images/production/license.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.licenses-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 29, 31, 0.6);
    z-index: 1;
}

.licenses-hero .hero-content {
    position: relative;
    z-index: 2;
}

.licenses-hero .hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #fff !important;
}

.licenses-hero .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto;
    opacity: 0.9;
    color: #fff !important;
}

/* Main Content Area */
.licenses-main {
    padding: 80px 0;
    background-color: #f5f5f7;
}

.disclosures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.disclosure-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclosure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.disclosure-card h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1d1d1f;
    line-height: 1.2;
}

.disclosure-card p,
.disclosure-card li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
}

.disclosure-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.disclosure-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.disclosure-card a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .licenses-hero {
        padding: 80px 0;
    }
    .disclosures-grid {
        grid-template-columns: 1fr;
    }
}
