
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.conference-detail-page {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: #ffffff;
    padding-bottom: 4rem;
}

.main-content[b-0h9cb5uog7] {
    padding: 0;
    max-width: none;
    margin: 0 auto;
    width: 100%;
    flex: 1 1 auto;
}

.cd-loading,
.cd-notfound {
    max-width: 600px;
    margin: 6rem auto;
    text-align: center;
    font-family: 'Inter', system-ui, sans-serif;
    color: #333;
}

    .cd-notfound h2 {
        color: #0b2d5f;
        margin-bottom: 0.5rem;
    }

    .cd-notfound p {
        color: #6c757d;
        margin-bottom: 1.5rem;
    }

.main-content[b-0h9cb5uog7] {
    padding: 0;
    max-width: none;
    margin: 0 auto;
    width: 100%;
    flex: 1 1 auto;
}
.cd-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.cd-hero-overlay {
    background: linear-gradient(to top, rgba(11,45,95,0.92) 0%, rgba(11,45,95,0.55) 100%);
    padding: 5rem 0 2.5rem;
}

.cd-back-link {
    display: inline-block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    transition: color 0.15s;
}

    .cd-back-link:hover {
        color: #fff;
    }

.cd-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 0.5rem;
}

.cd-subtitle {
    font-size: 1.1rem;
    color: #F5C400;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.cd-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.92);
}

    .cd-hero-meta i {
        margin-right: 0.35rem;
    }



.cd-body {
    padding-top: 2.5rem;
}

.cd-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}


.cd-section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b2d5f;
    margin-bottom: 0.75rem;
}

.cd-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
    white-space: pre-line;
}

.cd-block-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #f3f4f5;
}

.cd-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

    .cd-list li {
        font-size: 0.95rem;
        color: #444;
        padding: 0.4rem 0 0.4rem 1.5rem;
        position: relative;
        line-height: 1.5;
    }

        .cd-list li::before {
            content: "•";
            position: absolute;
            left: 0.3rem;
            color: #458a5e;
            font-weight: 700;
        }

.cd-list-check li::before {
    content: "✓";
    color: #458a5e;
    font-size: 0.85rem;
}



.cd-sidebar {
    position: sticky;
    top: 1.5rem;
}

.cd-info-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15,47,150,0.08);
    padding: 1.5rem;
}

.cd-info-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b2d5f;
    margin-bottom: 1rem;
}

.cd-info-row {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f3f4f5;
}

    .cd-info-row:last-of-type {
        border-bottom: none;
    }

.cd-info-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9aa3c0;
}

.cd-info-value {
    font-size: 0.92rem;
    color: #333;
    font-weight: 500;
}

    .cd-info-value a {
        color: #0f2f96;
        text-decoration: none;
    }

        .cd-info-value a:hover {
            text-decoration: underline;
        }

.cd-info-cost .cd-info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #458a5e;
}

.conference-detail-page .cd-book-btn,
.cd-notfound .cd-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.8rem 1.5rem;
    background-color: #458a5e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.18s ease, transform 0.1s ease;
}

    .conference-detail-page .cd-book-btn:hover,
    .cd-notfound .cd-book-btn:hover {
        background-color: #3d784f;
        color: #ffffff;
    }

    .conference-detail-page .cd-book-btn:active {
        transform: scale(0.99);
    }

    .conference-detail-page .cd-book-btn:disabled {
        background-color: #cbd5e1;
        color: #ffffff;
        cursor: not-allowed;
        transform: none;
    }


.cd-notfound .cd-book-link {
    width: auto;
    margin-top: 0;
}



@media (max-width: 900px) {
    .cd-grid {
        grid-template-columns: 1fr;
    }

    .cd-sidebar {
        position: static;
    }

    .cd-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .cd-hero-overlay {
        padding: 3.5rem 0 2rem;
    }

    .cd-title {
        font-size: 1.6rem;
    }

    .cd-hero-meta {
        gap: 0.75rem;
        font-size: 0.82rem;
    }
}
