.video-event-template{
    font-family: "Inter", sans-serif;
}

.video-event-hero {
    padding: 120px 20px 100px;
    position: relative;
    overflow: hidden;
}

.video-event-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.45), rgba(10, 10, 10, 0.35));
    z-index: 1;
}

.video-event-hero .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.video-event-hero__inner {
    position: relative;
    z-index: 2;
}

.video-event-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.65) 100%);
}

.video-event-hero .hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.video-event-hero__content {
    max-width: 920px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
}

.video-event-hero__inner,
.video-event-content__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.video-event-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    flex-wrap: wrap;
}

.material-symbols-outlined {
    font-size: 14px;
}

.video-event-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.video-event-breadcrumb a:hover {
    color: #86bd4a;
}

.video-event-hero__title {
    font-family: "Unbounded", sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.video-event-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    background: rgba(134, 189, 74, 0.15);
    border: 1px solid rgba(134, 189, 74, 0.4);
    border-radius: 100px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #86bd4a;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.video-event-hero__tag-icon,
.video-event-btn__icon {
    font-family: "Material Symbols Outlined";
    font-size: 18px;
    line-height: 1;
    vertical-align: middle;
}

.video-event-hero__sub {
    max-width: 860px;
}

.video-event-hero__sub p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.02rem;
    line-height: 1.62;
}

.video-event-hero__sub p:last-child {
    margin-bottom: 0;
}

.video-event-hero__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.video-event-hero__actions .video-event-btn {
    gap: 8px;
}

.video-event-hero__outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.video-event-hero__outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.72);
}

.video-event-hero__badges {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: fit-content;
}

.video-event-hero__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
    text-align: center;
}

.video-event-hero__badge-num {
    font-family: "Unbounded", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #86bd4a;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.video-event-hero__badge-label {
    font-family: "DM Sans", sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.video-event-hero__badge-sep {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.video-event-content {
    padding: 40px 20px 80px;
}

.video-event-cta__title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-event-cta p {
    margin-top: 0;
}

.video-event-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.video-event-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #86bd4a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
}

blockquote {
    background: #7ad03a1c;
    border-left: 10px solid #86bd4a;
    color: #86bd4a;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
    padding: 1em;
    position: relative;
    transition: all 0.3s ease;
}

.video-event-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    padding: 1.5rem 1.75rem;
    margin: 20px 0;
    position: relative;
    background: #f9fafb;
    color: #000;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    padding-top: 80px;
}

.video-event-quote::before {
    content: "“";
    font-size: 5rem;
    position: absolute;
    left: 50%;
    top: 0;
    color: #86bd4a;
    transform: translateX(-50%);
}

.video-event-featured iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 12px;
}

.video-event-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 24px;
}

.video-event-filters button {
    border: 0;
    border-radius: 999px;
    background: #f0f2f5;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
}

.video-event-filters button.is-active {
    background: #86bd4a;
    color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.64);
    transform: scale(1.15);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.2);
    filter: brightness(0.45);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

.video-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1100px, 92vw);
    aspect-ratio: 16 / 9;
    z-index: 9999;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.video-event-content .entry-content > *:first-child {
    margin-top: 0;
}

.video-event-content .entry-content > *:last-child {
    margin-bottom: 0;
}

.video-event-content h2,
.video-event-content h3 {
    color: #111827;
    line-height: 1.2;
}

.video-event-content h2 {
    margin-top: 2.4rem;
}

.video-event-content h3 {
    margin-top: 1.8rem;
}

.video-event-content p,
.video-event-content li {
    color: #374151;
    line-height: 1.75;
}

.video-event-content .wp-block-button__link {
    border-radius: 999px;
    padding: 14px 22px;
}

.video-event-content iframe,
.video-event-content video {
    width: 100%;
    border: 0;
    border-radius: 14px;
}

@media (max-width: 900px) {
    .video-event-hero {
        padding-top: 84px;
        padding-bottom: 72px;
    }

    .video-event-content .entry-content,
    .video-event-cta,
    .video-event-featured {
        padding: 28px 20px;
    }

    .video-event-featured iframe {
        min-height: 220px;
    }

    .video-event-hero__badges {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .video-event-hero__badge-sep {
        display: none;
    }
}

.--single-metas {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.--single-shares {
    align-items: center;
    display: flex;
}

.--share {
    align-items: center;
    background: var(--color);
    border-radius: 50%;
    display: flex;
    height: 25px;
    justify-content: center;
    margin-right: 4px;
    width: 25px;
}

.--share img {
    width: 12px;
}

.entry-content h2 {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.25em;
    margin-bottom: 20px;
}

.box_content_video_v2{
    padding: 1.5rem 1.75rem;
    background: #f9fafb;
    border-left: 3px solid var(--green);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content_video_v2 p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75em;
    
}

.content_video_v2 h3 {
    color: #86bd4a;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.content_video_v2 a {
    color: #86bd4a;
    text-decoration: underline;
    font-weight: 500;
}