@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: "Poppins", sans-serif; font-size: 17px; line-height: 1.6rem;}
h1,h2,h3,h4,h5,h6{font-family: "Poppins", sans-serif;}
link:hover {
    /*color: #014f55;*/
    color: #1b4b4a;
}

p {
    line-height: 1.6; /* adjust as needed */
}

/*-- nav bar --*/
.nvbg{background-color: #f4f7e9;}
.softylbg{background-color: #f7faf3;}
.h-10 {
    height: 3.5rem;
}
.h658px
{height: 658px;}
.text-teal {color: #004d4d;}

.nav-link{ font-size: 0.9rem; color: #2b313b; font-weight: 500;}
.form-control{ background:#f7f8fb; border-color:#edf0f5;}

/* Style each link */
.custom-nav .nav-link {
    padding: 0.5rem 1rem; /* vertical and horizontal padding */
    display: inline-block;
}

/* Add | separator after each item except the last */
.custom-nav .nav-item:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -0.75rem; /* pull it out of padding space */
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 1rem;
    line-height: 1;
}

/* Create space for separator and avoid double-padding */
.custom-nav .nav-item {
    position: relative;
    margin-right: 1.5rem; /* Space after item */
}

/* Optional: Reduce margin on first item */
.custom-nav .nav-item:first-child {
    margin-left: 0;
}

.profile-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.meet-heading {
    font-size: 2.5rem;   }


/* Hide separator on mobile if needed */
@media (max-width: 991.98px) {
    .custom-nav .nav-item::after {
        display: none;
    }

    .custom-nav .nav-item {
        margin-right: 0;
    }


}


@media (max-width: 991.98px) {

    .custom-mobile-text {
        font-size: 14px;
    }

    .meet-heading {
        font-size: 1.6rem;   }

    .profile-img {
        width: 160px;
        height: 160px;
    }
}


/* --- hero section ----*/
.hero-section {
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-section .hero-overlay {
    background-color: #134e4ab3; /* semi-transparent overlay */
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1; /* bring content above overlay */
}



@media (max-width: 991.98px) {
    .hero-section {
        background-image: url('../images/Gewa-bg-mobile.jpg');
        align-items: flex-end;
    }

    .hero-section .content-wrapper {
        height: 550px;
        padding-bottom: 2rem;
    }
}

.content-wrapper {
    /* For mobile bottom spacing */
    padding-bottom: 0;
}

.content-inner {
    max-width: 60%;
}

@media (max-width: 991.98px) {
    .content-inner {
        max-width: 100%;
    }
}

/* Smooth button hover effect */

.btn-teal {
    background-color: #004d4d;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    border: 1px solid #015055;
}

.btn-teal::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(244, 247, 233, 1);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-teal:hover::before {
    width: 100%;
}

.btn-teal:hover {
    color: #015055;
    border: 1px solid #015055;
}


.thumb-card {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.thumb-card:hover .thumb-img {
    transform: scale(1.05);
}
.thumb-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 0.75rem;
}
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(244, 247, 233, 1);
    transition: left 0.3s ease-in-out;
    z-index: -1;
}
.btn-hover-effect:hover::before {
    left: 0;
}
.btn-hover-effect:hover {
    color: #015055 !important;
}

.thumb-name {
    font-size: 1.2rem;
}

.bg-y{background-color: #f4f7e9;}



@media (max-width: 991.98px) {

    .w-75 {
        width: 100% !important;
    }


}




.main-section {
    padding: 5rem 0;
}
.card-custom {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff;
}
.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.card-body-custom {
    padding: 1.5rem;
}
.icon-custom {
    font-size: 1.5rem;
    color: #343a40;
}
.text-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #212529;
}
.text-description {
    font-size: 0.9rem;
    color: #6c757d;
}
.btn-custom {
    background-color: #00796b;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.3rem;
    transition: background-color 0.2s;
}
.btn-custom:hover {
    background-color: #005f56;
    color: white;
}
.jumbotron-bg {
    background-image: url('https://placehold.co/1000x600/e0e0e0/ffffff?text=Image+of+Audience');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.jumbotron-text-container {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
}
.text-center-lg {
    text-align: center !important;
}
@media (min-width: 992px) {
    .text-center-lg {
        text-align: left !important;
    }
}



.card-hover-zoom img {
    transition: transform 0.4s ease;
}

.card-hover-zoom:hover img {
    transform: scale(1.05);
}



.play-icon-wrapper {
    display: inline-block;
    font-size: 4rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    opacity: 0.8;

}

.play-icon-wrapper:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}


.bg-dark-teal {
    background-color: #1b4b4a; /* adjust if needed */
}

.dark-teal{color: #1b4b4a;}


.bg-half-right {
    background: url("../images/er-bg.jpg") top right no-repeat;
    background-size: 60% auto; /* Always half the container width */
}

.ftrlst li{ margin-top: 10px;}


/* Soft background like the design */
.bg-soft-cream { background: linear-gradient(180deg,#F7FBEF 0%, #FFFFFF 78%);
    /*softmintâ†’white*/border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px; }

/* Pill tag (icon + label) */
.pill-tag{
    padding:.45rem .95rem;
    border:1px solid rgba(1,80,85,.25);  /* #015055 base */
    border-radius:999px;
    background: linear-gradient(180deg, #e7f6ee 0%, #dff0e8 100%);
    color:#015055;
    font-weight:600;
    box-shadow: 0 2px 6px rgba(1,80,85,.08);
}
.pill-tag i{ font-size:1rem; line-height:1; }

/* Typographic scale (mobile-first) */
.inside-title{
    font-size:1.75rem;        /* ~28px on phones */
    letter-spacing:.2px;
}
.inside-lead{
    max-width: 58rem;         /* keeps one/two clean lines on desktop */
    font-size:.95rem;
}

/* Upscale on md+ and lg+ similar to your previous pages */
@media (min-width: 768px){
    .inside-title{ font-size:2.5rem; }  /* ~40px */
    .inside-lead{ font-size:1rem; }
}
@media (min-width: 1200px){
    .inside-title{ font-size:2.875rem; } /* ~46px */
}










/* Checkbox accent color */
.form-check-input {
    accent-color: #015055;
}

/* Sidebar panel */
.filter-panel {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(1, 80, 85, 0.05);
}

.filter-list .form-check-label {
    cursor: pointer;
}

/* Chips */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-size: 0.8125rem;
    line-height: 1;
    border-radius: 999px;
    background-color: #e6f2f3;   /* soft teal bg */
    color: #015055;
    border: 1px solid #cfe1e2;
}
.chip .chip-x {
    appearance: none;
    border: 0;
    background: transparent;
    color: #015055;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    margin-left: 2px;
    cursor: pointer;
}
.chip .chip-x:hover { color: #013c40; }

/* Result cards */
.result-card {
    background-color: #f7faf3; /* warm soft background */
    border: 1px solid #e9ecef;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(1, 80, 85, 0.06);
    transition: box-shadow .2s ease, transform .12s ease;
}
.result-card:hover {
    box-shadow: 0 10px 28px rgba(1, 80, 85, 0.10);
    transform: translateY(-2px);
}

.result-top {
    background-color: #0f5053; /* deep teal header strip */
    height: 92px;
    position: relative;
}
.result-location {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 0.75rem;
    color: #e2f0f1;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    backdrop-filter: blur(2px);
}
.result-avatar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -32px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 4px solid #f7faf3;  /* matches card bg */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.result-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-body {
    padding: 64px 16px 16px;
}
.result-role {
    color: #6b757b;
    font-size: 0.85rem;
}
.result-desc {

    border: 1px solid rgba(1, 80, 85, 0.15);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    color: #56606a;
}

/* Offcanvas fix on iOS/Android (improves scroll area look) */
.offcanvas .filter-list .form-check { margin-bottom: .5rem; }

/* Accessibility focus */
.btn-outline-teal:focus-visible,
.btn-teal:focus-visible,
.chip .chip-x:focus-visible {
    outline: 2px solid #015055;
    outline-offset: 2px;
}

/* Make the little icon buttons look nice in tight spaces */
.input-group-text i { color: #6c757d; }

/* Small breakpoint niceties */
@media (min-width: 576px) {
    .result-body { padding: 56px 18px 18px; }
}

/* Larger spacing on lg cards if you want */
@media (min-width: 992px) {
    .result-body { padding: 58px 20px 20px; }
}

/* Banner container */
.cta-banner{
    background: linear-gradient(135deg, #0e4f4c 0%, #0b3f3d 100%);
    box-shadow: 0 12px 28px rgba(1, 80, 85, 0.22);
}

/* Right-side decorative image (â‰¥md) */
.banner-art{
    position: absolute;
    right: -90px;             /* pushes artwork to the edge like in the design */
    top: -40px;
    width: 58%;
    height: 150%;
    background-image: url("../images/m-card.png"); /* replace with your asset */
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    transform: rotate(-18deg);
    filter: drop-shadow(0 14px 24px rgba(0,0,0,.25));
    opacity: .95;

    /* soft fade on the left edge so it blends into the banner */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.85) 18%, #000 40%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.85) 18%, #000 40%);
}

/* Small niceties on mobile */
@media (max-width: 575.98px){
    .cta-banner .btn{
        font-size: .875rem;
    }
    .cta-banner h2{
        font-size: 1.35rem;
        line-height: 1.25;
    }
    .cta-banner p{
        font-size: .9375rem;
    }
}



/* Links & buttons */
.text-teal{ color:#004d4d!important; }
.link-teal{ color:#004d4d; text-decoration:none; }
.link-teal:hover{ color:#107a73; text-decoration:underline; }

.btn-outline-teal{ border-color:#004d4d; color:#004d4d; }
.btn-outline-teal:hover{ background:#004d4d; color:#fff; }

.badge{font-size: 0.8rem; font-weight:500;}
.bg-verify{ background:#eb3b19 !important; } /* green badge */

/* Sticky helper (desktop and up) */
@media (min-width: 992px){
    .stick-lg{ position: sticky; top: 1.25rem; } /* adjust top if header is taller */
}






/* Bigger avatar */
.profile-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.1);
}
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Optional: subtle â€œverifiedâ€ green in modal */
.bg-success-subtle{ background:#e8f7ee; }
.border-success-subtle{ border-color:#bfe8cb!important; }
.text-success{ color:#198754!important; }

/* If you donâ€™t already have this button style */
.btn-outline-teal{ border-color:#0f6c66; color:#0f6c66; }
.btn-outline-teal:hover{ background:#0f6c66; color:#fff; }





.clamp-text { position: relative; }
.clamp-text__content { position: relative; }

/* Bottom fade when clamped */
.clamp-text.clamp-text--clamped .clamp-text__content::after{
    content:"";
    position:absolute; left:0; right:0; bottom:0;
    height:3rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ffffff 80%);
    pointer-events:none;
}

/* Optional: nicer link-button appearance */
.clamp-text__toggle { color:#0f6c66; }
.clamp-text__toggle:hover { color:#107a73; text-decoration:underline; }








/* Header card avatar
.profile-avatar{ width:160px; height:160px; border-radius:50%; overflow:hidden; border:3px solid #fff;
  box-shadow:0 2px 4px rgba(0,0,0,.06); }
.profile-avatar img{ width:100%; height:100%; object-fit:cover; } */

.section-title{ text-transform:uppercase; letter-spacing:.04em; font-weight:700; color:#0f5132; }

/* Left websites panel */
.web-panel{ background:#004d4d; color:#fff; padding:0; overflow:hidden; }
.web-panel-head{ padding:1rem 1.25rem; text-transform:uppercase; font-weight:700; border-bottom:1px solid rgba(255,255,255,.18); }
.web-links .nav-link{ color:#fff; padding:.9rem 1.25rem; border-bottom:1px dashed rgba(255,255,255,.25); }
.web-links .nav-link:hover{ background:rgba(255,255,255,.08); }

/* Chips */
.chip{
    display:inline-flex; align-items:center; padding:.35rem .6rem; border-radius:999px;
    background:#eaf7f6; border:1px solid #d7efed; font-size:.85rem;
}

/* Experience list */
.exp-item{ padding:1rem 0; border-bottom:1px solid #e9ecef; }
.exp-item:last-child{ border-bottom:0; }
.exp-dot{ width:.55rem; height:.55rem; background:#004d4d; display:inline-block; border-radius:50%; margin-right:.5rem; position:relative; top:-.1rem; }











.pf-item{ background:#fff; transition:box-shadow .2s, transform .2s; }
.pf-item:hover{ box-shadow:0 8px 20px rgba(0,0,0,.06); transform:translateY(-1px); }

.pf-ico{ width:40px; height:40px; background:#f8f9fa; border-radius:.5rem; }
.pf-ico i{ font-size:1.5rem; }

.pf-name{ font-size:0.9rem; font-weight: 500; }
.min-w-0{ min-width:0; } /* enables text-truncate within flex */







/* Gallery */
.gallery-img{ width:100%; height:110px; object-fit:cover; border-radius:.5rem; }
@media (min-width: 992px){ .gallery-img{ height:140px; } }
.video-thumb{ position:relative; display:block; }
.video-thumb .play{
    position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:1.5rem; background:rgba(0,0,0,.25); border-radius:.5rem; opacity:0; transition:.2s;
}
.video-thumb:hover .play{ opacity:1; }

/* Similar profiles */
.sim-prof{ padding:.6rem 0; border-bottom:1px solid #f1f3f5; }
.sim-prof:last-child{ border-bottom:0; }
.sim-prof img{ width:44px; height:44px; object-fit:cover; border-radius:50%; }

/* Make modal images pleasant */
#imageModal .modal-content {
    background:#000;
}
#imageModal .carousel-control-prev,
#imageModal .carousel-control-next{
    opacity:.8;
}
#imageModal .carousel-control-prev:hover,
#imageModal .carousel-control-next:hover{
    opacity:1;
}





/* Sidebar heading */
.section-title{ text-transform:uppercase; letter-spacing:.04em; font-weight:700; color:#0f5132; }

/* Card shell */
.sp-card{
    border:1px solid #e9ecef; border-radius:1rem; background:#fff; overflow:hidden;
    box-shadow:0 2px 10px rgba(15,108,102,.06);
}

/* Top header band */
.sp-top{
    height:92px; background:linear-gradient(180deg,#0f6c66 0%, #0d5b56 100%);
    position:relative; border-radius:1rem 1rem 0 0;
}
.sp-loc{
    position:absolute; top:.65rem; right:.65rem;
    display:inline-flex; align-items:center; gap:.25rem;
    padding:.25rem .6rem; font-size:.75rem; color:#f8f9fa;
    background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.28);
    border-radius:999px; backdrop-filter:blur(2px);
}

/* Avatar ring overlapping band */
.sp-avatar{
    width:76px; height:76px; border-radius:50%; overflow:hidden;
    border:4px solid #fff; background:#fff;
    box-shadow:0 6px 16px rgba(0,0,0,.08);
    margin:-38px auto 0; position:relative; z-index:2;
}
.sp-avatar img{ width:100%; height:100%; object-fit:cover; }

/* Body */
.sp-body{ padding:1rem 1rem 1.25rem; }
.sp-name{ font-weight:700; font-size:1.05rem; text-align:center; margin-top:.25rem; }
.sp-role{ color:#6c757d; text-align:center; margin-bottom:.9rem; }

/* Description chip */
.sp-desc{
    background:#f7fbfa; border:1px solid #e3ebe9; color:#344054;
    padding:.75rem .8rem; border-radius:.6rem; font-size:.9rem; line-height:1.55;
}

/* Micro hover for card */
.sp-card:hover{ box-shadow:0 6px 22px rgba(15,108,102,.12); transform:translateY(-1px); transition:.2s; }


/* Search input + button */
.ip-input{
    background:#fff;
    border:1px solid #e6ecea;
    border-radius:12px;
    padding:.9rem 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.ip-input:focus{
    border-color:#0f6c66;
    box-shadow: 0 0 0 .2rem rgba(15,108,102,.12);
}





.nav-pills .nav-link {
    border-radius: .5rem;
    font-weight: 500;
    color: #333;
    padding: .6rem 1rem;
    margin-bottom: .3rem;
    font-size:0.9rem;
}
.nav-pills .nav-link.active {
    background-color: #0f6c66;
    color: #fff;
}










.nav-pills .nav-link{ border-radius:.75rem; font-weight:600; color:#344054; }
.nav-pills .nav-link.active{ background:#0f6c66; color:#fff; }
.nav-pills .nav-link:not(.active):hover{ background:#f3f6f6; }

/* Mobile scroller */
.tab-scroller-wrap{ position:relative; }
.tab-scroller{
    display:flex; gap:.5rem; overflow-x:auto; padding:.25rem .25rem .25rem 0;
    scroll-snap-type:x proximity; -webkit-overflow-scrolling:touch;
}


/* Fade edges */
.tab-scroller-wrap::before,
.tab-scroller-wrap::after{
    content:""; position:absolute; top:0; bottom:0; width:18px; pointer-events:none;
}
.tab-scroller-wrap::before{ left:0; background:linear-gradient(to right,#fff,rgba(255,255,255,0)); }
.tab-scroller-wrap::after { right:0; background:linear-gradient(to left ,#fff,rgba(255,255,255,0)); }



/* Make pills stay on one line and scroll horizontally */
.tab-scroller .nav-link{
    white-space: nowrap;
    flex: 0 0 auto;    /* don't shrink */
}
.tab-scroller{
    scrollbar-width: none;      /* Firefox hide scrollbar */
}
.tab-scroller::-webkit-scrollbar{ display:none; }  /* WebKit hide scrollbar */



/* Headline tighter line-height like the mock */
.lh-tight{ line-height:1.15; }

/* Outer rounded frame around the video */
.hero-video-frame{
    max-width: 1100px;
    border: 8px solid #eaeceb;
    border-radius: 28px;
    padding: 10px;               /* space between frame and image */
    background:#fff;
}

.video-thumb{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}
.video-thumb img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}

/* Play button */
.play-btn{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
}
.play-btn::before{
    content:"";
    width:84px; height:84px;
    background:#ffffff;
    border-radius:999px;
    box-shadow:0 8px 24px rgba(0,0,0,.15);
    transition:.2s transform, .2s box-shadow;
}
.play-btn .triangle{
    position:absolute;
    width:0; height:0;
    border-left:22px solid #0f6c66;
    border-top:14px solid transparent;
    border-bottom:14px solid transparent;
    margin-left:6px; /* optical centering */
}
.video-thumb:hover .play-btn::before{
    transform: scale(1.06);
    box-shadow:0 12px 30px rgba(0,0,0,.2);
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
}

/* Larger vertical rhythm on big screens */
@media (min-width: 992px){
    .py-lg-6{ padding-top:4.5rem!important; padding-bottom:4.5rem!important; }
}




/* Card shell */
.trend-card{
    display:block; border-radius:14px; overflow:hidden; position:relative;
    background: #0b1a1a; /* dark base for text contrast like mock */
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
    transition: transform .2s ease, box-shadow .2s ease;
}
.trend-card:hover{ transform: translateY(-2px); box-shadow:0 10px 24px rgba(0,0,0,.18); }

/* Media */
.trend-media{ position:relative; aspect-ratio: 4/5; }
.trend-media img{ width:100%; height:100%; object-fit:cover; display:block; }

/* Overlays */
.badge-trend{
    position:absolute; top:10px; right:10px;
    background:#e7fff5; color:#107a73; border:1px solid #b8efe3;
    font-weight:700; font-size:.7rem; letter-spacing:.4px;
    padding:.25rem .5rem; border-radius:999px;
}
.badge-time{
    position:absolute; left:10px; bottom:10px;
    background: rgba(0,0,0,.6); color:#fff; font-size:.8rem; font-weight:600;
    padding:.3rem .5rem; border-radius:.5rem;
    backdrop-filter: blur(2px);
}

/* Text area */
.trend-body{
    position:absolute; left:0; right:0; bottom:0;
    padding:.75rem .75rem 1rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.65) 60%, rgba(0,0,0,.85) 100%);
}

/* Swiper nav buttons */
.swiper-btn{
    position:absolute; top:38%; z-index:3;
    width:44px; height:44px; border-radius:999px;
    border:1px solid #d7efed; background:#ffffff;
    color:#0f6c66; display:flex; align-items:center; justify-content:center;
    box-shadow:0 6px 16px rgba(0,0,0,.12);
    transition: transform .2s, background .2s, color .2s;
}
.swiper-btn:hover{ background:#0f6c66; color:#fff; transform:scale(1.05); }
.swiper-btn.prev{ left:-10px; }
.swiper-btn.next{ right:-10px; }

/* Swiper sizing */
.gewa-trending{ padding: 6px 6px 24px; } /* bottom space for bullets on mobile */

/* Pagination bullets on mobile */
.swiper-pagination-bullet{ background:#c4dedb; opacity:1; }
.swiper-pagination-bullet-active{ background:#0f6c66; }

@media (min-width: 768px){
    .trend-media{ aspect-ratio: 3/4; }
}



/* Shell */
.cat-card{
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    transition: transform .18s ease, box-shadow .18s ease;
    height: 320px; /* desktop */
    background:#0f6c66; /* fallback */
}
.cat-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,0,0,.14);
}
/* Inner overlay for padding/placement */
.cat-inner{
    position: absolute; inset: 0;
    display: flex; align-items: flex-end;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%);
}
.cat-text{ color:#fff; }
.cat-title{ font-weight:800; line-height:1.05; }
.cat-kicker{ letter-spacing:.12em; font-size:.85rem; opacity:.9; }

/* Backgrounds (soft blur + hex overlay) */
.cat-1{
    background:
        radial-gradient(1000px 400px at 10% 20%, rgba(255,255,255,.15), transparent 60%),
        radial-gradient(800px 300px at 85% 75%, rgba(255,255,255,.12), transparent 60%),
        linear-gradient(135deg,#0f6c66 0%, #0a3e3b 100%);
}
.cat-2{
    background:
        radial-gradient(900px 360px at 20% 20%, rgba(255,255,255,.35), transparent 60%),
        radial-gradient(700px 280px at 85% 70%, rgba(255,255,255,.25), transparent 60%),
        linear-gradient(135deg,#e7f0d6 0%, #99b59d 100%);
}
.cat-3{
    background:
        radial-gradient(1000px 400px at 15% 20%, rgba(255,255,255,.15), transparent 60%),
        radial-gradient(800px 300px at 85% 75%, rgba(255,255,255,.12), transparent 60%),
        linear-gradient(135deg,#0b5a56 0%, #083a37 100%);
}
/* Hex pattern overlay (same for all; tinted by base) */
.cat-card::before{
    content:"";
    position:absolute; inset:0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.22' stroke='%23ffffff' stroke-width='4' fill='none'%3E%3Cpath d='M55 20l35 20v40L55 100 20 80V40zM145 20l35 20v40l-35 20-35-20V40zM55 120l35 20v40l-35 20-35-20v-40zM145 120l35 20v40l-35 20-35-20v-40z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-size: 60% auto;
    background-position: 80% 18%;
    pointer-events:none;
}

/* Responsive height */
@media (max-width: 991.98px){ .cat-card{ height: 280px; } }
@media (max-width: 575.98px){ .cat-card{ height: 240px; } }



/* Card look */
.tm-card{
    width:340px;              /* desktop card width */
    background:#f1f1f1;
    border:1px solid #e9ecef;
    border-radius:16px;
    padding:18px;
    box-shadow:0 6px 20px rgba(0,0,0,.06);
    margin-right:18px;
}
.tm-card.tm-highlight{ background:#ECF2D0; border-color:#ECF2D0; }
.tm-avatar{ width:40px; height:40px; border-radius:50%; object-fit:cover; }

/* Tracks */
.tm-track{ white-space:nowrap; }
.tm-track-inner{
    display:inline-flex; align-items:stretch;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 38s;           /* adjust speed */
}
.tm-left-to-right .tm-track-inner{ animation-name: marqueeRTL; }
.tm-right-to-left .tm-track-inner{ animation-name: marqueeLTR; }

@keyframes marqueeLTR {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
@keyframes marqueeRTL {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover / touch */
.tm-track-inner:hover { animation-play-state: paused; }
.tm-track-inner:active{ animation-play-state: paused; }

/* Responsiveness */
@media (max-width: 991.98px){
    .tm-card{ width:360px; }
}
@media (max-width: 575.98px){
    .tm-card{ width:280px; padding:16px; margin-right:14px; }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
    .tm-track-inner{ animation: none; }
}
.tm-track { white-space: nowrap; }
.tm-card, .tm-card * { white-space: normal; }






.auth-wrap { min-height:100%; padding:24px; display:grid; place-items:center; }
.auth-surface { width:min(1200px,100%); background:#0a0a0a; border-radius:28px; overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,.45); }

.auth-grid { display:grid; grid-template-columns:1.1fr 1fr; }
@media (max-width: 992px){ .auth-grid { grid-template-columns:1fr; } }

/* Left artwork â€” hidden on mobile */
.auth-left {
    position:relative; min-height:640px;
    background: #111 center/cover no-repeat;
    background-image:url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"); /* â† your image */
}
.auth-left::after{ content:""; position:absolute; inset:0;
    background: radial-gradient(80% 80% at 20% 20%, rgba(0,0,0,.1), rgba(0,0,0,.55) 70%); }
.auth-frame{ position:absolute; inset:24px; border-radius:22px; border:3px solid rgba(255,255,255,.9); pointer-events:none; }
.auth-left-content{ position:relative; z-index:1; color:#fff; padding:56px 56px 72px; height:100%; display:flex; flex-direction:column; justify-content:flex-end; gap:12px; }
.auth-quote{ position:absolute; top:56px; left:56px; letter-spacing:.2em; font-size:.8rem; opacity:.9; text-transform:uppercase;}
.display-title{ font-weight:600; line-height:1.02; font-size:clamp(32px,5vw,56px); letter-spacing:-.02em; }
.display-sub{ color:rgba(255,255,255,.85); max-width:36ch; }

/* Right panel */
.auth-right{ background:#fff; border-top-right-radius:28px; border-bottom-right-radius:28px; padding:clamp(28px,4vw,44px); display:grid; align-content:center; }
@media (max-width: 992px){ .auth-right{ border-top-left-radius:0; border-bottom-left-radius:28px; } }

.brand{ display:inline-flex; align-items:center; gap:.5rem; color:inherit; text-decoration:none; margin-bottom:20px; }
.brand-icon{ width:28px; height:28px; border-radius:999px; background: radial-gradient(circle at 30% 30%, #111, #444); display:inline-block; }
.brand-name{ font-weight:600; }
.auth-title{ font-size:clamp(28px,4vw,40px); font-weight:600; letter-spacing:-.02em; margin-bottom:.25rem; }
.auth-sub{ color:#6c757d; margin-bottom:1.25rem; }

.auth-wrap .form-control{ background:#f7f8fb; border-color:#edf0f5; height:48px; }
.btn-dark{ height:48px; border-radius:12px; font-weight:600; }
.btn-google{ height:48px; border-radius:12px; font-weight:600; background:#fff; border:1px solid #e7e7e7; }
.btn-google svg{ width:20px; height:20px; margin-right:8px; }
.auth-footer{ color:#6c757d; font-size:.95rem; margin-top:18px; }
.auth-footer a{ text-decoration:none; } .auth-footer a:hover{ text-decoration:underline; }

/* Small mobile banner (visible only on mobile) */
.mobile-art{
    background: #111 center/cover no-repeat;
    background-image:url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    height:140px; border-radius:16px; margin-bottom:18px; position:relative; overflow:hidden;
}
.mobile-art::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45)); }
.mobile-art .quote{ position:absolute; left:16px; bottom:12px; color:#fff; font-size:.85rem; letter-spacing:.12em; text-transform:uppercase; }

/* Radio-as-cards (desktop) */
.user-type .btn{
    border:1px solid #e9edf4; background:#f9fafc; border-radius:14px; padding:14px; height:100%;
    display:flex; align-items:center; justify-content:center; text-align:center; font-weight:600;
}
.user-type .btn:hover{ background:#f2f5fb; }
.btn-check:checked + .btn{ border-color:#0d6efd; box-shadow:0 0 0 2px rgba(13,110,253,.25) inset; background:#fff; }
.user-type .hint{ font-weight:500; font-size:.92rem; color:#6c757d; margin-top:.5rem; }

/* OTP */
.otp-box input{ width:48px; height:56px; text-align:center; font-size:20px; border-radius:10px; }
@media (max-width: 420px){ .otp-box input{ width:44px; height:52px; } }

/* Steps */
.step{ display:none; }
.step.active{ display:block; }



/* Stat cards */
.stat-card{
    background:#eaf7f6;            /* light teal */
    border:1px solid #d7efed;
    border-radius:16px;
    padding:1.25rem;
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.stat-card--accent{
    background:#0f6c66;            /* dark teal */
    border-color:#0f6c66;
    color:#fff;
    box-shadow:0 10px 22px rgba(15,108,102,.25);
}

.stat-number{
    font-weight:800;
    font-size:clamp(1.6rem, 3.2vw, 2.4rem);
    line-height:1;
    color:#0f6c66;
    margin-bottom:.25rem;
}
.stat-card--accent .stat-number{ color:#fff; }

.stat-title{
    font-weight:600;
    color:#1f2937;
}
.stat-card--accent .stat-title{ color:#fff; }

.stat-icon{
    font-size:clamp(1.6rem, 3vw, 2.2rem);
    line-height:1;
    margin-bottom:.25rem;
    color:#0f6c66;
}
.stat-card--accent .stat-icon{ color:#fff; }

/* Minor utility */
.tracking-wide{ letter-spacing:.08em; }














.surface{ background:#fff; border:1px solid #ebeff2; border-radius:16px; }
.shadow-soft{ box-shadow: 0 8px 26px rgba(16,24,40,.06); }

.player-wrap{ position: static !important; top:auto !important; }

@media (max-width: 991.98px){ .player-wrap.is-sticky{ position: static; top:auto; } }

.tabs-under .nav-underline .nav-link{
    color:#475467; font-weight:600; padding:.6rem 0; border-radius:0; border-bottom:2px solid transparent;
}
.tabs-under .nav-underline .nav-link:hover{ color:#0f6c66; }
.tabs-under .nav-underline .nav-link.active{ color:#0f6c66; border-bottom-color:#0f6c66; }

.tabs-under .tab-content.surface{ border-top:1px solid #ebeff2; border-radius:0 0 16px 16px; }

.chip{
    display:inline-flex; align-items:center; gap:.35rem;
    padding:.4rem .65rem; border-radius:999px;
    border:1px solid #e6ecea; background:#fff; color:#111; text-decoration:none;
}
.chip:hover{ background:#f6faf9; border-color:#dfe9e7; }

.playlist-panel{ border:1px solid #ebeff2; }
.badge-soft{ background:#eef6f3; color:#0f6c66; border:1px solid #d9ebe8; border-radius:999px; padding:.25rem .5rem; font-weight:600; font-size:.75rem; }

.playlist-scroll{ max-height: calc(100vh - 220px); overflow:auto; padding:.5rem; }
.playlist-scroll::-webkit-scrollbar{ height:10px; width:10px; }
.playlist-scroll::-webkit-scrollbar-thumb{ background:#d9e6e3; border-radius:999px; }
.playlist-scroll::-webkit-scrollbar-track{ background:transparent; }

.lesson{
    display:block; width:100%; text-align:left; background:#fff; border:1px solid #ebeff2;
    border-radius:12px; padding:.75rem .9rem; margin-bottom:.5rem; cursor:pointer;
    transition: background .12s, border-color .12s;
}
.lesson:hover{ background:#f8fbfa; border-color:#e3eeeb; }
.lesson.active{ background:#eaf7f6; border-color:#bfe4df; box-shadow: inset 2px 0 0 #0f6c66; }

.lesson-left{ display:flex; flex-direction:column; gap:.25rem; }
.lesson-title{ font-weight:600; color:#1f2937; line-height:1.25; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.lesson-meta{ font-size:.85rem; color:#667085; }
.lesson-assets{ display:flex; gap:.4rem; margin-top:.2rem; }
.asset-pill{ display:inline-flex; align-items:center; justify-content:center; padding:.15rem .4rem; font-size:.7rem; font-weight:700; color:#fff; border-radius:999px; letter-spacing:.02em; }
.asset-pill.pdf{ color:#e15b5b; } .asset-pill.ppt{ color:#e59d3c; } .asset-pill.doc{ color:#4f86ff; } .asset-pill.xls{ color:#22a06b; }


.event-hero{
    position:relative; min-height:72vh; display:flex; align-items:center;
    background: #0b1a1a center/cover no-repeat;
    background-image: var(--hero-img);
}
.event-hero__overlay{
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(8,20,20,.65), rgba(8,20,20,.75));
    backdrop-filter: blur(.5px);
}
.event-hero__content{ max-width: 900px; padding: 3rem 0; }

.event-hero__meta{ font-weight:600; letter-spacing:.3px; opacity:.9; margin-bottom:.5rem; }






/* Base: allow wrapping + center items */
.countdown{
    display: flex;
    flex-wrap: wrap;             /* <-- key */
    justify-content: center;
    align-items: stretch;
    gap: 8px;                    /* spacing between cells when wrapped */
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
}

/* Cells */
.cd-col{
    min-width: 120px;            /* desktop */
    text-align: center;
    padding: .9rem 1.25rem;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
}

/* Separator */
.cd-sep{
    display:flex;
    align-items:center;
    padding:0 .75rem;
    font-weight:700;
    color: rgba(255,255,255,.85);
    font-size: clamp(1.5rem, 3vw, 2.5rem);

}

/* Typography */
.cd-label{ font-size:.95rem; color:rgba(255,255,255,.86); margin-bottom:.15rem; }
.cd-value{ font-size: clamp(1.6rem, 4.5vw, 3rem); font-weight:600; line-height: 1; }

/* Tablet: slightly smaller cells */
@media (max-width: 991.98px){
    .event-hero{ min-height: 64vh; }
    .cd-col{ min-width: 110px; padding: .8rem 1rem; }
}

/* Phones: switch to a tidy 2-column layout; hide separators */
@media (max-width: 575.98px){
    .countdown{
        display: grid;                       /* grid is cleaner here */
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .cd-col{
        min-width: 0;                        /* allow shrinking */
        padding: .7rem .8rem;
    }
    .cd-sep{ display: none; }              /* no colons in wrapped layout */
    .cd-label{ font-size: .85rem; }
    .cd-value{ font-size: clamp(1.4rem, 7vw, 2.2rem); }
}

/* CTA */
.event-cta{
    background:#1da1a3; border-color:#1da1a3; color:#fff;
    box-shadow: 0 8px 22px rgba(29,161,163,.25);
}
.event-cta:hover{ background:#118f90; border-color:#118f90; color:#fff; }

/* Pills */
.nav-pills .nav-link{
    background:#f4f8f7; color:#0f6c66; border:1px solid #e0eeec;
    border-radius:999px; padding:.4rem .9rem; font-weight:600;
    white-space: nowrap;
}
.nav-pills .nav-link.active{
    background:#0f6c66; color:#fff; border-color:#0f6c66;
}

/* Timeline line */
.timeline{
    position: relative;
    list-style: none;
    padding-left: 56px;
}
.timeline::before{
    content:"";
    position:absolute;
    left: 28px; top:0; bottom:0;
    width:2px; background:#0f6c66;
}

/* Timeline item */
.tl-item{ position: relative; padding: 20px 0; }


.tl-time{ margin-bottom:6px; display:flex; align-items:center; gap:.25rem; }

/* Avatar stack */
.avatar-stack{ display:inline-flex; align-items:center; }
.avatar-stack img{
    width:38px; height:38px; border-radius:50%;
    object-fit:cover;
    border:2px solid #fff;
    box-shadow:0 1px 2px rgba(0,0,0,.08);
    margin-left:-8px;
}
.avatar-stack img:first-child{ margin-left:0; }

@media (max-width: 575.98px){
    .timeline{ padding-left:48px; }
    .timeline::before{ left:24px; }

}









/* Card shell */

.speakers.v2 .spk-card{
    border:1px solid #e7efed; border-radius:16px; overflow:hidden; background:#fff;
    box-shadow:0 8px 24px rgba(16,24,40,.06); transition:transform .2s ease, box-shadow .2s ease;
}

.speakers.v2, .sponsors {background:#f7fbfa;}
.speakers.v2 .spk-card:hover{ transform:translateY(-2px); box-shadow:0 14px 34px rgba(16,24,40,.10); }
.speakers.v2 .spk-photo{ aspect-ratio: 4/3; background:#eaf7f6; }
.speakers.v2 .spk-photo img{ width:100%; height:100%; object-fit:cover; }
.speakers.v2 .spk-body{ padding:1rem 1rem 1.25rem; }

/* BIG two-line name block (like your reference) */
.speakers.v2 .name-block{ line-height:1; margin-bottom:.5rem; }
.speakers.v2 .name-block .first,
.speakers.v2 .name-block .last{
    display:block; text-transform:uppercase; letter-spacing:.5px;
}
.speakers.v2 .name-block .first{
    font-weight:800;
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
}
.speakers.v2 .name-block .last{
    font-weight:900;
    font-size: clamp(1.6rem, 3vw, 2rem);
}
.speakers.v2 .spk-tag{ font-weight:600; }

/* Modal layout */
/* Fix close button so "Ã—" is visible */
.spk-modal .spk-close {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 1056;
    background: #0f6c66;         /* teal circle */
    color: #fff !important;      /* force white text */
    border-radius: 50%;
    width: 36px;
    height: 36px;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;             /* bigger Ã— */
    font-weight: bold;
    line-height: 1;
}

/* Remove Bootstrapâ€™s default SVG background */
.spk-modal .spk-close::before {
    content: "Ã—";                /* real Ã— symbol */
}

.spk-modal .spk-close:hover {
    background: #0c5550;
    transform: scale(1.05);
}

.spk-modal .modal-body{ padding:0; }
.spk-modal .profile-wrap{
    display:grid; grid-template-columns: 420px 1fr; gap:2rem; padding:2rem;
}
.spk-modal .pfp{ border-radius:18px; overflow:hidden; background:#f3f7f6; aspect-ratio:1/1; }
.spk-modal .pfp img{ width:100%; height:100%; object-fit:cover; }
.spk-modal .name{ font-weight:900; font-size:clamp(1.6rem,2.8vw,2.1rem); }
.spk-modal .text-teal{ color:#0f6c66; }
.spk-modal .about{ color:#475467; }
.spk-modal .facts{ border-top:1px solid #edf3f2; }

@media (max-width: 991.98px){
    .spk-modal .profile-wrap{ grid-template-columns: 1fr; padding:1.25rem; }
    .spk-modal .pfp{ max-width:520px; margin:0 auto; }
}

sponsors{ background:#f7fbfa; } /* subtle neutral used across your pages */

/* Tier badge colors (keep in theme) */
.tier-badge{ font-weight:700; letter-spacing:.04em; }
.tier-gold   { background:#ffe8a3; color:#7a5b00; }
.tier-silver { background:#e7ebf0; color:#4b5563; }
.tier-partner{ background:#eaf7f6; color:#0f6c66; }

/* Logo item */
.sponsor-item{
    display:flex; align-items:center; justify-content:center;
    background:#fff; border:1px solid #e7efed; border-radius:12px;
    padding:18px; min-height:84px;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    box-shadow:0 4px 14px rgba(16,24,40,.06);
}
.sponsor-item img{
    max-width: 100%;
    max-height: 56px;        /* keeps logos visually even */

}
.sponsor-item:hover{
    transform: translateY(-2px);
    box-shadow:0 10px 24px rgba(16,24,40,.10);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}


.venue-map{ background:#eaf7f6; }
.venue-map iframe{ width:100%; height:100%; min-height:360px; display:block; }

.venue-card .object-fit-cover{ object-fit:cover; }
.venue-card .card-body p{ line-height:1.6; }


/* CTA background: deep teal with subtle dotted overlay */
.cta-tickets{
    position: relative;
    background: radial-gradient(1200px 600px at 80% -10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(900px 500px at 10% 120%, rgba(255,255,255,.06), transparent 60%),
    #0a3f3b; /* deep teal base */
    overflow: hidden;
}
.cta-tickets::after{
    /* tiny particles */
    content:"";
    position:absolute; inset:0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,.22) 50%, transparent 51%),
        radial-gradient(2px 2px at 30% 70%, rgba(255,255,255,.18) 50%, transparent 51%),
        radial-gradient(2px 2px at 60% 30%, rgba(255,255,255,.2) 50%, transparent 51%),
        radial-gradient(2px 2px at 80% 60%, rgba(255,255,255,.16) 50%, transparent 51%),
        radial-gradient(2px 2px at 50% 85%, rgba(255,255,255,.18) 50%, transparent 51%),
        radial-gradient(2px 2px at 20% 90%, rgba(255,255,255,.14) 50%, transparent 51%);
    background-repeat:no-repeat;
    pointer-events:none;
}
@media (min-width:992px){
    .py-lg-6{ padding-top:5rem!important; padding-bottom:5rem!important; }
}



/* ===== Hero ===== */
.events-hero{ min-height: 56vh; display:flex; align-items:center; }
.events-hero .hero-bg{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
    filter: saturate(1.05) contrast(1.03);
}
.events-hero .hero-overlay{
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.55));
}
.events-hero .container{ position:relative; padding-top:3rem; padding-bottom:3rem; }



/* ===== Event card ===== */
.event-card{
    background:#fff; border:1px solid #e7efed; border-radius:16px; overflow:hidden;
    box-shadow:0 8px 26px rgba(16,24,40,.06); transition:transform .18s ease, box-shadow .18s ease;
}
.event-card:hover{ transform:translateY(-3px); box-shadow:0 14px 34px rgba(16,24,40,.12); }
.event-card .event-media{ position:relative; aspect-ratio: 16/9; background:#f3f6f6; }
.event-card .event-media img{ width:100%; height:100%; object-fit:cover; }
.event-card .event-body{ padding:1rem 1rem 1.2rem; }

/* Date badge */
.date-badge{
    position:absolute; left:12px; top:12px; background:#fff; color:#0f6c66;
    border:1px solid #e7efed; border-radius:10px; padding:.35rem .5rem; line-height:1; text-align:center;
    box-shadow:0 6px 18px rgba(16,24,40,.08);
}
.date-badge .day{ font-weight:800; font-size:1.1rem; }
.date-badge .mon{ font-weight:700; font-size:.75rem; letter-spacing:.08em; }

/* Previous event badge */
.event-card.past .finished{
    position:absolute; right:12px; top:12px; background:#f1f5f9; color:#475467; border:1px solid #e5e7eb;
}

.bg-light{ background:#f7fbfa!important; }


/* ===== Current Event Hero ===== */
.current-hero{
    min-height: 56vh;
    display:flex; align-items:center;
    position:relative;
    background:#0b2f2c; /* fallback color before image loads */
}
.current-hero::before{
    /* background image from JS inline style */
    content:""; position:absolute; inset:0;
    background-position:center; background-size:cover; background-repeat:no-repeat;
    filter: saturate(1.05) contrast(1.03);
    z-index:0;
}
.current-hero .hero-overlay{
    position:absolute; inset:0; z-index:1;
    /* layered overlays to guarantee readability */
    background:
        linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.55)),
        radial-gradient(1000px 600px at 15% 10%, rgba(15,108,102,.22), transparent 60%);
}

/* Glass panel for text block */
.current-hero .glass-wrap{
    position:relative; z-index:2;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

/* Slightly brighter white for long copy */
.text-white-75{ color: rgba(255,255,255,.8) !important; }

.stretched-link::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
}

.current-hero .container{ position:relative; z-index:2; padding-top:3rem; padding-bottom:3rem; }

/* Responsive tune */
@media (max-width: 575.98px){
    .current-hero{ min-height: 52vh; }
    .current-hero .glass-wrap{ padding:1rem 1.25rem !important; }
}




/* Scope everything to #events-archive to avoid leaks */
#events-archive .page-title { letter-spacing: .2px; }
#events-archive .toolbar .form-select,
#events-archive .toolbar .form-control { min-width: 180px; }
#events-archive .event-card {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 6px 22px rgba(0,0,0,.06);
    overflow: hidden;
    background: #fff;
}
#events-archive .event-media {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    display: block;
}
#events-archive .date-badge {
    position: absolute; top: .75rem; left: .75rem;
    background: #fff; color: #0f766e; /* teal-700 */
    border-radius: 14px; padding: .35rem .6rem; font-weight: 700;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
#events-archive .status-badge.only-up{
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: #004d4d;
    color: #fff;
    border-radius: 999px;
    padding: .25rem .6rem;
    font-weight: 600;
    font-size: .8rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}


/* ===== Scoped styles ===== */
#events-archive .pill-tag{
    background:#E6FBF8; color:#0f766e;
    border:1px solid rgba(15,118,110,.18);
    border-radius:999px; padding:.45rem .9rem; font-weight:700;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    display:inline-flex; align-items:center; gap:.5rem;
}
#events-archive .hero-title{ font-weight:600; }
#events-archive .hero-sub{ color:#475569; max-width:760px; }
#events-archive .stat-num{ font-size:2.3rem; font-weight:700; color:#0f766e; padding-bottom: 10px; }
#events-archive .stat-label{ font-size:1rem; letter-spacing:.05em; text-transform:uppercase; color:#475569; font-weight:600; }



#events-archive .status-badge {
    position: absolute; top: .75rem; right: .75rem;
    background: #e7f8f6; color: #0f766e; border-radius: 999px;
    padding: .25rem .6rem; font-weight: 600; font-size: .8rem;
    box-shadow: inset 0 0 0 1px rgba(15,118,110,.15);
}


#events-archive .card-body { padding: 1rem 1rem 1.25rem; }
#events-archive .title { font-size: 1.2rem; font-weight:600; margin-bottom: .25rem; }
#events-archive .meta { color: #64748b; font-size: .925rem; }
#events-archive .desc { color: #475569; }
#events-archive .btn-pill {
    border-radius: 999px; padding: .4rem .9rem; font-weight: 600;
}


#events-archive .chip {
    border: 1px solid rgba(15,118,110,.25);
    color: #0f766e; border-radius: 999px; padding: .25rem .6rem; font-weight: 600;
    background: #f3fbfa; font-size: .85rem;
}
/* Mode switching ------------------------------------------------------ */
/* Default: upcoming */
#events-archive .only-previous { display: none !important; }
/* When previous mode is active */
#events-archive[data-mode="previous"] .page-title[data-for="upcoming"],
#events-archive[data-mode="previous"] .only-upcoming { display: none !important; }
#events-archive[data-mode="previous"] .only-previous { display: inline-flex !important; }
#events-archive[data-mode="previous"] .date-badge { display: inline-flex; } /* keep date */
/* Pagination */
#events-archive .pagination .page-link { border-radius: 999px; }

.bg-teal-soft{ background:#eaf7f6;}
.text-teal-900{ color:#0f6c66; }


/* Scoped pagination theming */
.pagination .page-link {
    border-radius: 999px;
    color: #0f766e;               /* teal */
    border: 1px solid rgba(15,118,110,.25);
    background: #fff;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
}
.pagination .page-link:hover {
    background: #0f766e;
    color: #fff;
    border-color: #0f766e;
}
.pagination .page-item.active .page-link {
    background: #0f766e;
    border-color: #0f766e;
    color: #fff;
}
.pagination .page-item.disabled .page-link {
    background: #f8fafc;
    color: #94a3b8;
    border-color: #e2e8f0;
    pointer-events: none;
}


/* ===== Scoped styles (teal theme) ===== */
.hero-bleed{
    background: linear-gradient(180deg,#F7FBEF 0%, #FFFFFF 78%);
    /*softmintâ†’white*/border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}
#elevate .elevate-badge{
    background:#FFF4C2; color:#0f766e;
    border:1px solid rgba(15,118,110,.15);
    border-radius:999px; padding:.5rem 1rem;
    font-weight:700; display:inline-flex; align-items:center; gap:.5rem;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}
#elevate .hero-title{ font-weight:900; letter-spacing:.2px; }
#elevate .hero-sub{ color:#475569; max-width:720px; }
#elevate .dash-rule{
    border:0; border-top:2px dashed rgba(0,0,0,.28);
    width:min(640px,82%); margin:2rem auto 0; opacity:1;
}

#elevate .section-kicker{
    font-size:.8rem; letter-spacing:.12em; text-transform:uppercase;
    color:#64748b; font-weight:700;
}
#elevate .section-title-e{ color:#0f766e; font-weight:600; margin-top:.25rem; }

#elevate .session-card{
    border:1px solid rgba(15,118,110,.18);
    border-radius:16px; background:#fff;
    box-shadow:0 6px 22px rgba(0,0,0,.06);
}
#elevate .session-card .card-body{ padding:1.1rem; }
#elevate .session-title{ font-weight:600; font-size:1.2rem; }
#elevate .byline{ color:#64748b; font-size:.925rem; }
#elevate .meta li{ display:flex; align-items:center; gap:.5rem; }
#elevate .meta .bi{ font-size:1rem; color:#0f766e; }



/* Scoped to #elevate */
#elevate .pill-tag-mint{
    background:#E6FBF8; color:#0f766e;
    border:1px solid rgba(15,118,110,.18);
    border-radius:999px; padding:.45rem .9rem; font-weight:700;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    display:inline-flex; align-items:center; gap:.5rem;
}
#elevate .category-card{
    background:#fff; border:1px solid rgba(15,118,110,.14);
    border-radius:16px; box-shadow:0 6px 22px rgba(0,0,0,.06);
    transition:transform .15s ease, box-shadow .15s ease;
}
#elevate .category-card:hover{ transform:translateY(-2px); box-shadow:0 10px 28px rgba(0,0,0,.08); }
#elevate .category-badge{
    background:#E6FBF8; color:#0f766e; font-weight:700; font-size:.75rem;
    border:1px solid rgba(15,118,110,.18); border-radius:10px; padding:.25rem .5rem;
    display:inline-block;
}
#elevate .cat-title{ font-weight:600; margin-bottom:.25rem; }
#elevate .cat-desc{ color:#475569; margin-bottom:.5rem; }
#elevate .cat-link{ font-weight:700; color:#0f766e; text-decoration:none; }
#elevate .cat-link:hover{ text-decoration:underline; }
#elevate .sec-eyebrow{ font-size:1.875rem; font-weight:600; }
#elevate .sec-sub{ color:#475569; max-width:760px; }


#elevate .pill-tag-amber{
    background:#FFF4C2; color:#0f766e; border:1px solid rgba(15,118,110,.18);
    border-radius:999px; padding:.45rem .9rem; font-weight:700;
    box-shadow:0 8px 20px rgba(0,0,0,.06); display:inline-flex; gap:.5rem; align-items:center;
}
#elevate .process-title{ font-weight:600; }
#elevate .process-sub{ color:#475569; max-width:860px; }
#elevate .step-card{
    border:1px solid #e2e8f0; border-radius:14px;
    box-shadow:0 6px 18px rgba(0,0,0,.05); height:100%;
}
#elevate .step-num{
    width:54px; height:54px; border-radius:10px;
    background:#E6FBF8; color:#0f766e; font-weight:600;
    display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
#elevate .step-title{ font-weight:600; }
#elevate .step-desc{ color:#475569; }


/* ===== Scoped styles ===== */

#elevate-session .btn-soft{background:#f1f5f9;border:1px solid #e2e8f0;border-radius:999px;font-weight:700;color:#0f766e}
#elevate-session .meta .bi{color:#0f766e}
#elevate-session .info-box{background:#fafafa;border:1px solid rgba(15,118,110,.14);border-radius:16px;box-shadow:0 6px 22px rgba(0,0,0,.06)}
#elevate-session .lead-chip{background:#E6FBF8;color:#0f766e;border:1px solid rgba(15,118,110,.18);border-radius:10px;padding:.25rem .5rem;font-weight:600;font-size:.75rem}
#elevate-session .dash{border:0;border-top:2px dashed rgba(15,118,110,.25);margin:1.25rem 0}
#elevate-session .chip{display:inline-block;border:1px solid rgba(15,118,110,.25);background:#f7fffD;border-radius:999px;padding:.35rem .65rem;color:#0f766e;font-weight:600;font-size:.85rem;margin:.25rem .35rem .25rem 0}
#elevate-session .sec-kicker{font-size:1.75rem;font-weight:700;color:#0f766e}
#elevate-session .card.session-card{border:1px solid rgba(15,118,110,.18);border-radius:16px;box-shadow:0 6px 22px rgba(0,0,0,.06)}
#elevate-session .session-title{font-weight:600;font-size:1.2rem}
#elevate-session .byline{color:#64748b;font-size:.925rem}


/* ===== Scoped styles ===== */
#category-detail .pill-tag{
    background:#E6FBF8; color:#0f766e;
    border:1px solid rgba(15,118,110,.18);
    border-radius:999px; padding:.45rem .9rem; font-weight:700;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    display:inline-flex; align-items:center; gap:.5rem;
}
#category-detail .hero-title{ font-weight:600; }
#category-detail .hero-sub{ color:#475569; max-width:760px; }
#category-detail .stat-num{ font-size:2.3rem; font-weight:700; color:#0f766e; padding-bottom: 10px; }
#category-detail .stat-label{ font-size:1rem; letter-spacing:.05em; text-transform:uppercase; color:#475569; font-weight:600; }

#category-detail .session-card{
    border:1px solid rgba(15,118,110,.18);
    border-radius:16px; background:#fff;
    box-shadow:0 6px 22px rgba(0,0,0,.06);
    height:100%;}
#category-detail .session-title{ font-weight:600; font-size:1.2rem; }
#category-detail .byline{ color:#64748b; font-size:.925rem; }
#category-detail .meta .bi{ color:#0f766e; }

#category-detail .sec-title{ color:#0f766e; font-weight:600; }



/* Scoped to #category-detail */
#category-detail .rec-heading {
    color:#0f766e;
    font-weight:600;
}

#category-detail .rec-card {
    border:1px solid rgba(15,118,110,.18);
    border-radius:16px;
    background:#fff;
    box-shadow:0 6px 22px rgba(0,0,0,.06);
    height:100%;
    overflow:hidden;
    box-shadow: 0 6px 20px rgba(1, 80, 85, 0.06);
    transition: box-shadow .2s ease, transform .12s ease;
}

#category-detail .rec-card:hover{  box-shadow: 0 10px 28px rgba(1, 80, 85, 0.10);
    transform: translateY(-2px);}


/* Thumbnail fix: padding-top fallback + aspect-ratio */
#category-detail .rec-thumb {
    position: relative;
    height: 0;
    padding-top: 56.25%; /* 16:9 ratio */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow:hidden;
}
@supports (aspect-ratio: 16/9) {
    #category-detail .rec-thumb {
        height:auto;
        padding-top:0;
        aspect-ratio:16/9;
    }
}

/* Play label */
#category-detail .play-pill {
    position:absolute;
    top:.5rem; left:.5rem;
    z-index:1;
    background:#E6FBF8;
    color:#0f766e;
    font-weight:700;
    font-size:.8rem;
    border:1px solid rgba(15,118,110,.2);
    border-radius:999px;
    padding:.2rem .5rem;
}

#category-detail .rec-meta {
    color:#64748b;
    font-size:.9rem;
}


#category-detail .rec-card .card-body {
    padding: 1rem 1.25rem;   /* adds breathing space */
    display: flex;
    flex-direction: column;
}

#category-detail .rec-card .card-body h3 {
    margin-top: 0.25rem;     /* slight gap below the thumb */
    margin-bottom: 0.25rem;  /* tighten space to date */
    font-size: 1.2rem;
    font-weight: 600;
}

#category-detail .rec-card .rec-meta {
    margin-bottom: 1rem;     /* space before the button */
    font-size: 0.9rem;
    color: #64748b;
}

#category-detail .rec-card .btn {
    margin-top: auto;        /* pushes button to bottom if card grows */
}



#elevate-session {


/* Avatars next to agenda items */
.avatar-stack img{
    width: 32px; height: 32px; border-radius: 50%;
    object-fit: cover; border:2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.08);
    margin-left: -8px;
}
.avatar-stack img:first-child{ margin-left: 0; cursor: pointer; }

/* ---------- Speakers grid ---------- */
.speakers .spk-card{
    border:1px solid rgba(15,118,110,.15);
    border-radius:16px; background:#fff; height:100%;
    box-shadow:0 6px 20px rgba(0,0,0,.06); overflow:hidden;
}
.speakers .spk-photo{ aspect-ratio: 4/3; overflow:hidden; }
.speakers .spk-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.speakers .spk-body{ padding:1rem; }
.speakers .name-block{ line-height:1; font-weight:900; letter-spacing:.04em; }
.speakers .name-block .first{ display:block; font-size:.85rem; color:#0f766e; }
.speakers .name-block .last{ display:block; font-size:1.3rem; color:#0b2b29; }

/* ---------- Speaker modal ---------- */
.spk-modal .profile-wrap{ display:flex; flex-wrap:wrap; }
.spk-modal .pfp{ flex:0 0 380px; max-width:100%; }
.spk-modal .pfp img{ width:100%; height:100%; max-height:520px; object-fit:cover; display:block; }
.spk-modal .pfp-body{ flex:1 1 420px; padding:1.25rem 1.25rem 1.75rem; }
.spk-modal .name{ font-weight:800; }
.spk-modal .facts{ border-top:1px dashed rgba(15,118,110,.2); }

@media (max-width: 992px){
    .spk-modal .pfp{ flex-basis:100%; max-height:260px; }
    .spk-modal .pfp img{ max-height:260px; }
}

/* ---------- Sponsors ---------- */
.sponsor-item{
    display:flex; align-items:center; justify-content:center;
    height:72px; padding:8px 12px; background:#fff; border:1px solid rgba(15,118,110,.15);
    border-radius:12px; box-shadow:0 4px 14px rgba(0,0,0,.05);
}
.sponsor-item img{ max-width:100%; max-height:48px; object-fit:contain; }
.tier-badge{ background:#eef9f7; color:#0f766e; border:1px solid rgba(15,118,110,.2); }
.tier-gold{ background:#fff7e0; color:#915f00; border-color:#f1d28a; }
.tier-silver{ background:#f4f6fa; color:#52606d; border-color:#d7dce3; }

/* ---------- Minor utilities (only if not already in theme) ---------- */
.text-teal{ color:#0f766e !important; }
.btn-outline-teal{ color:#0f766e; border-color:#0f766e; }
.btn-outline-teal:hover{ color:#fff; background:#0f766e; border-color:#0f766e; }
}

/* Desktop left-rail */
.card-rail{
    background:#fff;
    border:1px solid var(--bs-border-color, #e5e7eb);
    position: sticky;
    top: 1rem;          /* matches your other sticky uses */
}

/* Title in the rail */
.rail-title{
    letter-spacing:.06em;
    color:#0f6c66;      /* your teal family */
}

/* Vertical pills look like tidy bubbles, full width */
.card-rail .nav-pills .nav-link{
    border-radius: 999px;
    padding: .55rem .9rem;
    text-align:left;
    color:#0f6c66;
    background:#f3fbfa;               /* soft teal tint */
    border:1px solid transparent;
    margin-bottom:.5rem;
    transition: all .15s ease;
}

.card-rail .nav-pills .nav-link:hover{
    background:#e9f6f5;
}

.card-rail .nav-pills .nav-link.active{
    background:#0f6c66;               /* solid theme */
    color:#fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.03) inset;
}




/* Multi-paragraph friendly clamp with a fade */
.clamp-5{
    --lines: 6;         /* how many lines to show before clamping */
    --lh: 1.6;          /* line-height used for measurement */
    line-height: var(--lh);
    max-height: calc(var(--lines) * 1em * var(--lh));
    overflow: hidden;
    position: relative;
}
.clamp-5.clamped::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height:3rem;                 /* size of the fade */
    pointer-events:none;
    background:linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}
.clamp-5.expanded{
    max-height: none;
}
.clamp-5.expanded::after{
    display:none;
}

/* ===== News page (scoped) ===== */
.news-page .text-teal { color: #0f6c66; }
.news-page .bg-teal-subtle { background: #e6f3f2; color: #0f6c66; }

.news-page .btn-teal {
    background: #0f6c66;
    color: #fff;
    border: 1px solid #0f6c66;
}
.news-page .btn-teal:hover {
    filter: brightness(0.95);
    color:#fff;
}
.news-page .btn-outline-teal {
    background: #fff;
    color: #0f6c66;
    border: 1px solid #0f6c66;
}
.news-page .btn-outline-teal:hover {
    background: #0f6c66;
    color:#fff;
}

.news-page .rounded-4 { border-radius: 1rem; }
.news-page .shadow-soft { box-shadow: 0 .25rem .75rem rgba(0,0,0,.06); }

/* Search bar */
.news-page .news-search input[type="search"] {
    height: 48px;
    border-radius: 999px;
}
.news-page .news-search .btn { height: 48px; }

/* Featured block */
.news-page .featured-badge {
    display:inline-block;
    padding:.35rem .6rem;
    border-radius:999px;
    background: #e6f3f2;
    color: #0f6c66;
    font-weight:600;
    font-size:.8rem;
}
.news-page .featured-date { font-size:.85rem; color:#6c757d; }

/* Article cards */
.news-page .article-card {
    transition: transform .2s ease, box-shadow .2s ease;
    border: 0;
}
.news-page .article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.08);
}
.news-page .article-card .ratio img { object-fit: cover; }

/* Read more link with arrow */
.news-page .read-more {
    font-weight:600;
    text-decoration:none;
}
.news-page .read-more .arrow {
    transition: transform .2s ease;
    display:inline-block;
}
.news-page .read-more:hover .arrow { transform: translateX(3px); }

/* Section header */
.news-page .sec-lead { color:#6c757d; }

/* Mobile tweaks */
@media (max-width: 576px) {
    .news-page h1, .news-page h2 { font-size: 1.5rem; }
    .news-page .featured-wrap { gap: 1rem; }
    .news-page .news-search { padding-inline: .5rem; }
}

/* Pagination â€“ teal theme */
.news-page .news-page-pagination .pagination .page-link {
    color: #0f6c66;
    border: 1px solid #0f6c66;
    background: #fff;
    border-radius: .5rem;
    margin: 0 .2rem;
    min-width: 2.5rem;
    text-align: center;
}
.news-page .news-page-pagination .pagination .page-link:hover {
    background: #e6f3f2;
    color: #0f6c66;
}
.news-page .news-page-pagination .pagination .page-item.active .page-link {
    background: #0f6c66;
    border-color: #0f6c66;
    color: #fff;
}
.news-page .news-page-pagination .pagination .page-item.disabled .page-link {
    color: #9bb7b4;
    border-color: #cfe4e2;
    background: #f7fbfb;
    pointer-events: none;
}
@media (max-width: 576px) {
    .news-page .news-page-pagination .pagination .page-link {
        min-width: 2.25rem;
        padding: .35rem .6rem;
    }
}


.news-article .article-body h3 {
    color: #0f6c66;
}
.news-article .object-fit-cover { object-fit: cover; }

/* Share pills */
.news-article .share-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 999px;
    border: 1px solid #0f6c66;
    color: #0f6c66;
    text-decoration: none;
}
.news-article .share-pill:hover {
    background:#0f6c66; color:#fff;
}

/* "More news" cards */
.news-article .news-card {
    border: 1px solid #e9f1f0;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.news-article .news-card .card-img-top { object-fit: cover; }
.news-article .news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .75rem 1.25rem rgba(0,0,0,.06);
}
.news-article .link-teal {
    color:#0f6c66; text-decoration:none;
}
.news-article .link-teal:hover { text-decoration:underline; }



/* Responsive tweaks */
@media (max-width: 576px) {
    .news-article header .display-6 { font-size: 1.5rem; }
    .news-article .article-body { font-size: 1rem; }
}


/* resources multifile */


/* bottom sheet */
.download-sheet .modal-dialog.modal-bottom {
    margin: 0;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    max-width: 520px;
}
@media (min-width: 576px){
    .download-sheet .modal-dialog.modal-bottom { margin: auto; bottom: 2rem; }
}

/* file tiles */
.filelist { padding: 0; }
.file-item + .file-item { margin-top: .5rem; }

.file-link {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    text-decoration: none;
    background: #fff;
}
.file-link:hover { background: #f9fafb; }

.file-icon {
    display: inline-grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #e6f3f2;   /* soft teal */
    font-size: 22px;
}

.file-meta { display: grid; }
.file-name { font-weight: 600; color: #111827; }
.file-cta  { font-weight: 600; color: #0f6c66; } /* teal */

/* past event insde --*/
/* Thumbs */
.thumb{position:relative; overflow:hidden; border-radius:1rem; background:#f8f9fa}
.thumb img{width:100%; height:200px; object-fit:cover; display:block; transition:transform .3s ease}
.photo-card:hover .thumb img,
.video-card:hover .thumb img{transform:scale(1.03)}
/* Play overlay for video */
.thumb.video .play{
    position:absolute; inset:auto auto 10px 10px;
    background:#0f6c66; color:#fff; border-radius:999px;
    width:40px; height:40px; display:grid; place-items:center;
    box-shadow:0 4px 16px rgba(0,0,0,.25)
}
/* Image in lightbox should contain */
.object-fit-contain{object-fit:contain}
@media (min-width: 992px){
    .thumb img{height:220px}
}
