/* Custom Video Page Styles */

@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

main.page-container.custom-videos {
    font-family: 'Didact Gothic', sans-serif;
    font-weight: normal;
    margin: 20px auto;
    padding: 0 20px;
    max-width: 1200px;
    color: #000;
}

/* Accordion Sections */
.model-section {
    background-color: #fff;
    color: #000;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.model-section h1.section-header {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.accordion-header {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    cursor: pointer;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease-in-out;
}

.section-header {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.accordion-header:hover {
    background-color: #f1f1f1;
}

.accordion-header::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.2s ease;
    color: #666;
}

/* Prevent toggle icon for static accordion headers */
.accordion-header.static-header::after {
    content: none !important;
}

/* Prevent hover effect on static header */
.accordion-header.static-header:hover {
    background-color: #f9f9f9;
    cursor: default;
}

.accordion-item.active .accordion-header::after {
    content: '–';
    color: #333;
}

.accordion-item {
    transition: all 0.3s ease-in-out;
}
.accordion-content {
    display: none;
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Links inside accordion content */
.accordion-content a {
    color: #000066;
    text-decoration: underline;
    font-weight: 500;
}

.accordion-content a:hover {
    color: #0000cc;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* CTA Button */
.cta.viewAll {
    display: inline-block;
    margin-top: 15px;
    background-color: #000033;
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}
.cta.viewAll:hover {
    color: #ffffff;
    background-color: #000066;
}

/* Link Styling */
a {
    color: #007bff;
}
a:hover {
    color: #0056b3;
}

/* List Styling */
ul, ol {
    margin-left: 1.5rem;
    padding-left: 0;
}
ul li, ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Panel Grid Layout */
.panel-sections {
    display: grid;
    grid-template-columns: 1fr; /* default: single column */
    gap: 30px;
    margin-top: 20px;
}

/* Responsive: two columns on medium+ screens */
@media (min-width: 768px) {
    .panel-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Panel Block Styling */
.panel-block {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Image Styling */
.panel-images img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ccc;
}

/* Info Section */
.panel-info {
    padding: 15px 20px;
    width: 100%;
    text-align: center;
}

.panel-performers a {
    font-weight: 600;
    color: #000033;
    text-decoration: none;
}
.panel-performers a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
    .model-section {
        padding: 40px;
    }

    .accordion-header {
        font-size: 1.4rem;
    }
}