/* Panel Discussion Page Styles */

/* Panel Introduction Section */
.panel-intro {
    background: var(--background-color);
    padding: 4rem 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-large {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.panel-questions {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.panel-questions h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.panel-questions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-questions li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.8;
}

.panel-questions li:last-child {
    border-bottom: none;
}

.panel-questions li:before {
    content: "?";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Panelists Section */
.panelists-section {
    background: var(--white);
    padding: 4rem 0;
}

.panelists-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.panelists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.panelist-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.panelist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.panelist-photo {
    margin-bottom: 1.5rem;
}

.panelist-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.panelist-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.panelist-title {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

/* Bio Toggle Styling */
.bio-toggle {
    margin-top: 1rem;
    text-align: left;
}

.bio-toggle summary {
    cursor: pointer;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s;
    list-style: none;
    user-select: none;
}

.bio-toggle summary::-webkit-details-marker {
    display: none;
}

.bio-toggle summary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.bio-toggle summary:after {
    content: " ↓";
    font-weight: 700;
}

.bio-toggle[open] summary:after {
    content: " ↑";
}

.bio-content {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 5px;
    line-height: 1.7;
    font-size: 0.95rem;
    animation: fadeIn 0.3s ease-in;
}

.bio-content p {
    margin-bottom: 1rem;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Call to Action Section */
.panel-cta {
    background: var(--background-color);
    padding: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.cta-box .btn-primary:hover {
    background: var(--background-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .panelists-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .panelist-photo img {
        width: 150px;
        height: 150px;
    }

    .intro-large {
        font-size: 1.125rem;
    }

    .panel-questions {
        padding: 1.5rem;
    }

    .panel-questions li {
        padding-left: 2rem;
        font-size: 0.95rem;
    }

    .panel-questions li:before {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1rem;
    }
}
