/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #1a4d2e;
    --green-medium: #2d6a4f;
    --gold: #c8a54b;
    --gold-dark: #a88b32;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-light: #e9ecef;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --black: #000000;

    --font-serif: 'Crimson Text', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
}

/* ===== HEADER MINIMAL ===== */
.header-minimal {
    background-color: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo a {
    display: block;
    line-height: 0;
}

.header-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
    margin: 0 1rem;
}

.header-title a {
    color: var(--green-dark);
    text-decoration: none;
    transition: var(--transition);
}

.header-title a:hover {
    color: var(--gold);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--green-dark);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.menu-overlay.active {
    right: 0;
}

.menu-nav {
    padding: 6rem 2rem 2rem;
}

.menu-nav ul {
    list-style: none;
}

.menu-nav li {
    border-bottom: 1px solid var(--gray-light);
}

.menu-nav a {
    display: block;
    padding: 1rem 0;
    color: var(--green-dark);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: var(--transition);
}

.menu-nav a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

/* ===== HERO TWO-COLUMN ===== */
.hero-twocol {
    padding: 3rem 0;
    background-color: var(--off-white);
}

.hero-grid {
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* ===== HERO EVENTS SLIDER ===== */
.hero-slider-events {
    width: 100%;
    min-height: 500px;
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.hero-slider-events .splide {
    border-radius: 4px;
    height: 100%;
}

.hero-slider-events .splide__track {
    height: 100%;
}

.hero-slider-events .splide__list {
    height: 100%;
}

.hero-slider-events .splide__slide {
    height: 100%;
}

.event-slide-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    height: 100%;
    min-height: 500px;
}

.event-slide-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.event-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-slide-grid .card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 2.5rem;
}



/* Splide arrows styling */
.hero-slider-events .splide__arrow {
    background-color: var(--gold);
    opacity: 0.9;
    width: 2.5rem;
    height: 2.5rem;
}

.hero-slider-events .splide__arrow:hover {
    background-color: var(--gold-dark);
    opacity: 1;
}

.hero-slider-events .splide__arrow svg {
    fill: var(--white);
}

.hero-slider-events .splide__pagination {
    bottom: 1rem;
}

.hero-slider-events .splide__pagination__page {
    background-color: var(--gray-medium);
    opacity: 0.5;
}

.hero-slider-events .splide__pagination__page.is-active {
    background-color: var(--gold);
    opacity: 1;
    transform: scale(1.2);
}

.hero-card {
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.card-top-bar {
    height: 4px;
    background-color: var(--gold);
}

.hero-card .card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
}

.card-content h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.card-date {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.card-link {
    display: inline-block;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--green-dark);
}

/* ===== NAVIGATION CENTRAL ===== */
.nav-central {
    background-color: var(--white);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 0;
    padding: 3rem 2rem;
}

.nav-two-cols {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 3rem;
    align-items: start;
}

.nav-container {
    max-width: 550px;
    padding: 0;
}

.nav-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-list li {
    background-color: var(--gray-light);
    border-radius: 0;
}

.nav-list a {
    display: block;
    padding: 0.75rem 2rem;
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.0625rem;
    text-align: center;
    transition: var(--transition);
}

.nav-list a:hover {
    background-color: var(--off-white);
    color: var(--green-dark);
}

.presidente-box {
    background-color: var(--off-white);
    padding: 2.5rem;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.presidente-box h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.presidente-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.presidente-link {
    display: inline-block;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gold-dark);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    align-self: flex-start;
}

.presidente-link:hover {
    background-color: var(--gold-dark);
    color: var(--white);
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 3rem 0;
    background-color: var(--off-white);
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.intro-container h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}

.intro-container p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.intro-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.intro-link:hover {
    background-color: var(--gold-dark);
}

/* ===== SECTIONS WHITE ===== */
.section-white {
    padding: 4rem 0;
    background-color: var(--white);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.section-heading-white {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--gray-medium);
    text-align: center;
    margin-bottom: 3rem;
}

.section-sub-white {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.section-disclaimer {
    font-size: 0.875rem;
    color: var(--gray-medium);
    text-align: center;
    margin-top: 3rem;
    font-style: italic;
}

/* ===== VIDEO ===== */
.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* ===== EVENTI CARDS ===== */
.eventi-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-item {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.event-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.event-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-info {
    padding: 1.5rem;
}

.event-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.event-when {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.event-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.event-more {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.event-more:hover {
    color: var(--green-dark);
}

/* ===== VOLUMES SECTION ===== */
.section-volumes {
    padding: 4rem 0;
    background-color: var(--white);
}

.volumes-listing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.volume-item {
    background-color: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.volume-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
    background-color: var(--off-white);
}

.volume-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.volume-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.volume-num {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.volume-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    min-height: 3rem;
}

.volume-auth {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.volume-goto {
    display: inline-block;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.volume-goto:hover {
    color: var(--green-dark);
}

/* ===== TEMI CARDS ===== */
.temi-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tema-box {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.tema-box:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.tema-icon {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.tema-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.tema-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.tema-box a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.tema-box a:hover {
    color: var(--green-dark);
}

/* ===== LA CORTE OGGI ===== */
.oggi-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.oggi-img {
    margin-bottom: 1.5rem;
}

.oggi-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.img-caption {
    font-size: 0.875rem;
    color: var(--gray-medium);
    font-style: italic;
    margin-top: 0.5rem;
}

.oggi-main h3,
.oggi-init h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.oggi-main p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

.init-list {
    list-style: none;
}

.init-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.init-list li:last-child {
    border-bottom: none;
}

.init-list strong a {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.init-list strong a:hover {
    color: var(--gold);
}

.init-list p {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-top: 0.25rem;
}

/* ===== RASSEGNA STAMPA ===== */
.rassegna-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rassegna-box {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.rassegna-box:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.rassegna-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.rassegna-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.rassegna-src {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.rassegna-box a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.rassegna-box a:hover {
    color: var(--green-dark);
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

.view-all a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.view-all a:hover {
    color: var(--green-dark);
}

/* ===== SLIDER HISTORIC ===== */
.slider-historic {
    width: 100%;
    background-color: var(--gray-light);
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
}

.slider-historic .splide {
    width: 100%;
}

.slide-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.slide-pic {
    width: 110%;
    margin-left: -5%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 30%;
}

/* ===== FOOTER GREEN ===== */
.footer-green {
    background-color: var(--green-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-brand img {
    height: 50px;
    width: auto;
}

.footer-brand h3 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-copy {
    text-align: center;
    padding-top: 1rem;
}

.footer-copy p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-tiny {
    font-size: 0.75rem;
}

/* ===== PAGE SECTIONS ===== */
.page-section {
    min-height: 60vh;
    padding: 4rem 0;
}

.doc-description {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: 8px;
}

.doc-description h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.doc-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.back-link a {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--green-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.back-link a:hover {
    background-color: var(--green-medium);
}

/* ===== EVENT TEMPLATE (Presentazione Volume) ===== */
.evt-hero {
    background-color: var(--green-dark);
    color: var(--white);
    padding: 4rem 0;
}

.evt-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.evt-hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.evt-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.evt-volume-num {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.evt-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.evt-judge-name {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.evt-judge-name strong {
    font-weight: 600;
}

.evt-meta-info {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.evt-meta-info span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.evt-tomi {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.5;
}

.evt-hero-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    flex-shrink: 0;
}

.evt-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video */
.evt-video-section {
    padding: 3rem 0;
    background-color: var(--off-white);
}

.evt-video-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.evt-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.evt-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.evt-video-thumb {
    display: block;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.evt-video-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.evt-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.evt-video-thumb:hover .evt-video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.evt-video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    background-color: var(--white);
    border: 2px dashed var(--gray-light);
    border-radius: 4px;
    text-align: center;
}

.evt-video-placeholder svg {
    width: 48px;
    height: 48px;
    fill: var(--gray-medium);
}

.evt-video-placeholder p {
    font-size: 1rem;
    color: var(--gray-medium);
}

/* Content area */
.evt-content {
    padding: 3rem 0;
    background-color: var(--white);
}

.evt-content-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.evt-content-inner h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}

.evt-content-inner p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

/* Speakers */
.evt-speakers {
    padding: 3rem 0;
    background-color: var(--off-white);
}

.evt-speakers-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.evt-speakers-inner h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.evt-speakers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.evt-speaker-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.evt-speaker-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.evt-speaker-card p {
    font-size: 0.875rem;
    color: var(--gray-medium);
    line-height: 1.5;
}

/* Actions */
.evt-actions {
    padding: 2.5rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--gray-light);
}

.evt-actions-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.evt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 4px;
    transition: var(--transition);
}

.evt-btn svg {
    width: 18px;
    height: 18px;
}

.evt-btn-primary {
    background-color: var(--green-dark);
    color: var(--white);
}

.evt-btn-primary svg {
    fill: var(--white);
}

.evt-btn-primary:hover {
    background-color: var(--green-medium);
}

.evt-btn-secondary {
    background-color: var(--white);
    color: var(--gold-dark);
    border: 2px solid var(--gold-dark);
}

.evt-btn-secondary svg {
    fill: var(--gold-dark);
}

.evt-btn-secondary:hover {
    background-color: var(--gold-dark);
    color: var(--white);
}

.evt-btn-secondary:hover svg {
    fill: var(--white);
}

/* Event overview page */
.evt-overview-hero {
    background-color: var(--green-dark);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.evt-overview-hero .section-container {
    max-width: 800px;
}

.evt-overview-hero h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.evt-overview-hero .evt-overview-sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.evt-overview-hero .evt-overview-meta {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
}

.evt-session {
    padding: 3rem 0;
}

.evt-session:nth-child(even) {
    background-color: var(--off-white);
}

.evt-session-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.evt-session h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.evt-session-date {
    font-size: 1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.evt-program-item {
    display: grid;
    grid-template-columns: 80px 60px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.evt-program-item:last-child {
    border-bottom: none;
}

.evt-program-time {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-dark);
    white-space: nowrap;
}

.evt-program-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.evt-program-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evt-program-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.evt-program-info h4 a {
    color: var(--green-dark);
    text-decoration: none;
    transition: var(--transition);
}

.evt-program-info h4 a:hover {
    color: var(--gold-dark);
}

.evt-program-info p {
    font-size: 0.875rem;
    color: var(--gray-medium);
    line-height: 1.4;
}

.evt-program-info .evt-program-speakers {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: var(--gray-medium);
    font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-two-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-container {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-slider-events,
    .hero-card {
        min-height: auto;
    }

    .event-slide-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .event-slide-image {
        height: 250px;
    }

    .oggi-layout {
        grid-template-columns: 1fr;
    }

    .evt-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .evt-badge {
        align-self: center;
    }

    .evt-hero-photo {
        margin: 0 auto;
        width: 140px;
        height: 140px;
        order: -1;
    }

    .evt-meta-info {
        justify-content: center;
    }

    .evt-speakers-grid {
        grid-template-columns: 1fr;
    }

    .evt-program-item {
        grid-template-columns: 60px 45px 1fr;
    }
}

@media (max-width: 768px) {
    .evt-title {
        font-size: 1.75rem;
    }

    .evt-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .evt-actions-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .evt-btn {
        justify-content: center;
    }

    .evt-program-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .evt-program-photo {
        display: none;
    }
    .header-title {
        font-size: 1.25rem;
    }

    .slide-wrap {
        height: 140px;
    }

    .section-heading,
    .section-heading-white {
        font-size: 2rem;
    }

    .card-content h2 {
        font-size: 1.5rem;
    }

    .intro-container h2 {
        font-size: 1.75rem;
    }

    .video-wrapper iframe {
        height: 400px;
    }

    .volumes-listing {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .nav-list a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .section-container,
    .hero-grid {
        padding: 0 1rem;
    }

    .video-wrapper iframe {
        height: 250px;
    }

    .volumes-listing {
        grid-template-columns: 1fr;
    }
}
