@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap');


:root {
  --primary-color: #075056;
  --secondary-color: #967D69;
  /* --accent-color: #ED254E; */
  /* --accent-color: #44AF69; */
  --accent-color: #98CE00;
  
  
  --background-color: #E4EEF0;
  --text-color-black: #16232A;
  --text-color:#E4EEF0;
    --surface-color: #ffffff;
    --surface-strong: #0f172a;
    --surface-shadow: rgba(22, 35, 42, 0.42);
}

html {
    scroll-behavior: smooth;
}

#home,
#projects,
#about,
#contact {
    scroll-margin-top: 90px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}
body {
    font-family: 'Manrope', sans-serif;
    text-align: center;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color-black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
}

input {
    padding: 10px;
}

button {
    padding: 10px 15px;
    cursor: pointer;
    background-color: var(--accent-color);
    color: var(--surface-color);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--primary-color);
}

header {
    background-color: var(--surface-color);
   
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:visited {
    color: var(--secondary-color);
}

a:hover {
    color: var(--primary-color);
}

a:active {
    color: var(--text-color);
}

.top-banner {
    width: 100%;
    background: var(--surface-strong);
    color: var(--background-color);
    text-align: center;
    padding: 6px 10px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#clock {
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px var(--secondary-color);
}


.main-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 1rem 0;
    gap: 2rem;
}

.main-nav img {
    height: 90px;
    display: block;
}

.nav-list {
    /* justify-content: center; */
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    color: var(--text-color-black);
    font-weight: bold;
    /* padding: 30px; */
    
}

.nav-list a,
.nav-list a:visited {
    color: var(--text-color-black);
}

.nav-list a:hover {
    color: var(--accent-color);
}

.hero-section {
    background-image:
    linear-gradient(125deg, rgb(0, 0, 0, 0.85) 25%, rgba(0, 8, 8, 0.82) 40%, rgba(7, 80, 86, 0.88) 65%, rgba(187, 255, 0, 0.5) 100%),
    url("./Images/group-optimized.jpg");
    background-size: 180% 180%, cover;
    background-position: 65% 35%, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    min-height: 40rem;
    padding: 4rem 1.25rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    text-align: center;
    font-size: 1.5rem;
    color: var(--background-color);

}

.hero-widget {
    width: min(96vw, 1020px);
    max-width: min(96vw, 1020px);
    margin-bottom: 0.55rem;
    padding: 0.72rem 0.95rem;
    border: 1px solid rgba(228, 238, 240, 0.18);
    border-radius: 999px;
    background: linear-gradient(130deg, rgba(6, 25, 28, 0.8), rgba(15, 23, 42, 0.56));
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.95rem;
    text-align: left;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.hero-widget::-webkit-scrollbar {
    display: none;
}

.hero-widget-topline {
    display: flex;
    flex: 0 0 auto;
    margin-right: 0.2rem;
}

.hero-widget-badge {
    display: inline-flex;
    width: fit-content;
    padding: 0.44rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(152, 206, 0, 0.2), rgba(7, 80, 86, 0.24));
    border: 1px solid rgba(152, 206, 0, 0.42);
    color: var(--background-color);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-widget-items {
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.62rem;
    align-items: center;
    flex: 1 1 auto;
    padding-left: 0.8rem;
    border-left: 1px solid rgba(228, 238, 240, 0.26);
    overflow: hidden;
}

.hero-widget-chip,
.hero-widget-empty {
    display: inline-flex;
    align-items: center;
    min-height: 2.15rem;
    padding: 0.48rem 0.86rem;
    border-radius: 999px;
    border: 1px solid rgba(228, 238, 240, 0.22);
    background: linear-gradient(120deg, rgba(228, 238, 240, 0.1), rgba(228, 238, 240, 0.03));
    color: var(--background-color);
    font-size: 0.85rem;
    line-height: 1.2;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-widget-empty {
    color: rgba(228, 238, 240, 0.8);
}
    
.hero-text {
    /* position: relative; */
    max-width: 62ch;
    line-height: 1.6;
    margin-top: 0.25rem;
    color: var(--accent-color);
}
.title {
    font-size: 1rem;
    font-weight: bolder;
    letter-spacing: 0.12em;
}
.title-main {
    font-size: clamp(2.2rem, 6vw, 5rem);
    font-weight:lighter;
    line-height: 1.1;
    margin-top: 0.2rem;
}
.logo-and-text {

    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap:20px;
}
.logo {
    /* position: absolute; */
    /* top: 6%;
    left: 50%; */
    transform: rotate(35deg); 
    font-size: 2rem;
    color: var(--surface-shadow);
    opacity: 1.0;
    pointer-events: none;
}

#neuronCanvas {
    margin-top: 0.2rem;
    max-width: min(92vw, 400px);
}

.main-nav .logo-nav-img {
    display: block;
    /* font-size:3rem;
    font-weight: 900;
    color: #D64933; */
    height: 72px;
    width: auto;
    
}
.img-archive{
    /* display: flex; */
    justify-content: center;
    align-items: center;
    padding: 8% 0% 8% 0% ;
    /* margin: 5% 0% 5% 0% ; */
    background-color: var(--background-color);
}

.insights-heading {
    width: min(980px, 90%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.img-archive h1 {
    font-weight: bolder;
}

.year-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.year-tab {
    min-width: 4.8rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: var(--surface-color);
    color: var(--text-color-black);
    border: 1px solid rgba(22, 35, 42, 0.14);
    box-shadow: 0 8px 22px rgba(22, 35, 42, 0.08);
}

.year-tab[aria-pressed="true"] {
    background: var(--primary-color);
    color: var(--background-color);
}

.carousel{
    width: 90%;
    max-width: 980px;
    margin: 2rem auto 1rem;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 22px 48px rgba(22, 35, 42, 0.16);
}

.carousel-track {
    display: flex;
    /* flex-direction: column; */
    transition: transform 0.4s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.slide-empty {
    background:
        linear-gradient(135deg, rgba(7, 80, 86, 0.12), rgba(152, 206, 0, 0.2)),
        var(--surface-color);
    color: var(--text-color-black);
    padding: 2rem;
    font-weight: 700;
}

.prev, .next {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 56px;
    padding: 0;
    cursor: pointer;
    background-color: rgba(22, 35, 42, 0.65);
    color: var(--surface-color);
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.prev:hover, .next:hover {
    background-color: var(--accent-color);
}

.prev:disabled, .next:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.carousel-meta {
    width: min(980px, 90%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text-color-black);
}

.carousel-meta p {
    text-align: left;
    font-weight: 600;
}

#carouselCounter {
    flex: 0 0 auto;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.carousel-thumbnails {
    width: min(980px, 90%);
    margin: 1rem auto 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(88px, 1fr);
    gap: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.carousel-thumbnail {
    aspect-ratio: 4 / 3;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface-color);
    border: 2px solid transparent;
    opacity: 0.72;
}

.carousel-thumbnail[aria-current="true"] {
    border-color: var(--accent-color);
    opacity: 1;
}

.carousel-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Team Section */

.team-section-shell,
.team-archive {
    width: min(100%, 1100px);
    margin: 0 auto;
    padding-inline: 1rem;
}

.team-year-header,
.team-archive-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin: 2.6rem auto 1.2rem;
    text-align: left;
}

.team-year-header span,
.team-archive-heading span {
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.team-year-header strong,
.team-archive-heading strong {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.35rem, 3vw, 2.3rem);
    color: var(--text-color-black);
}

.team-container {
    display: grid;
    width: min(100%, 1100px);
    margin-inline: auto;
   
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 20px;
    /* border-style: dashed; */
    /* grid-template-columns: auto auto auto; */
    padding: 1rem 1rem;
    /* alignment */
    justify-content: center;
    justify-items: stretch;
    align-content: center;
    align-items: stretch;

}

.team-container [class^="inner-container-"] {
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 22px;
    padding: 22px 16px 18px;
    min-width: 0;
    min-height: 330px;
    height: fit-content;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    isolation: isolate;
    box-shadow: 0 20px 45px rgba(22, 35, 42, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-container [class^="inner-container-"]::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(228, 238, 240, 0.22);
    border-radius: 16px;
    pointer-events: none;
    z-index: -1;
}

.team-container [class^="inner-container-"]::after {
    content: "";
    position: absolute;
    top: -42px;
    right: -42px;
    width: 108px;
    height: 108px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.16;
    pointer-events: none;
}

.team-container [class^="inner-container-"]:hover {
    box-shadow: 0 24px 56px rgba(22, 35, 42, 0.2);
}

.team-container .inner-container-0 {
    background-color: var(--accent-color);
    grid-column: 2;
    color: var(--text-color-black);
    box-shadow: 0 24px 50px rgba(152, 206, 0, 0.24);
}

.team-container .inner-container-1 {
    background-color: var(--primary-color);
    grid-column: 1;
    color: var(--text-color);
    transform: translateY(-42%);
}

.team-container .inner-container-2 {
    background-color: var(--primary-color);
    grid-column: 2;
    color: var(--text-color);
    
}

.team-container .inner-container-3 {
    background-color: var(--primary-color);
    grid-column: 3;
    color: var(--text-color);
    transform: translateY(-42%);
}

.team-visual {
    position: relative;
    display: grid;
    place-items: center;
    width: fit-content;
}

.team-container img {
    width: clamp(96px, 12vw, 136px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.team-avatar-fallback {
    display: grid;
    place-items: center;
    width: clamp(96px, 12vw, 136px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(228, 238, 240, 0.14);
    color: inherit;
    border: 4px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
}
.team-container [class^="inner-container-"] img {
    display: block;
    margin: 0 auto;
}

.team-focus {
    position: absolute;
    right: -18px;
    bottom: 4px;
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    background: rgba(22, 35, 42, 0.86);
    color: var(--background-color);
    border: 1px solid rgba(228, 238, 240, 0.28);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.inner-container-0 .team-focus {
    background: var(--surface-color);
    color: var(--primary-color);
    border-color: rgba(22, 35, 42, 0.12);
}

.team-container .team-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.team-container .team-text h2,
.team-container .team-text h4,
.team-container .team-text h5 {
    margin: 0;
}

.team-container .team-text h2 {
    margin-top: 2px;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.team-container .team-text h4 {
    margin-top: 2px;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.82;
}

.team-container .team-text h5 {
    margin-top: 4px;
    overflow-wrap: anywhere;
    font-size: 0.82rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    opacity: 0.82;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.2rem;
}

.team-social-link {
    display: inline-grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    color: inherit;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.team-social-link svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.team-social-link:hover {
    transform: translateY(-2px);
    background: var(--accent-color);
    color: var(--text-color-black);
}

.inner-container-0 .team-social-link {
    background: rgba(22, 35, 42, 0.08);
    border-color: rgba(22, 35, 42, 0.18);
}

.team-social-link-muted {
    opacity: 0.52;
}

.team-archive {
    margin-top: -2.4rem;
}

.team-mini-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.5rem 0 1rem;
}

.team-mini-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: min(100%, 255px);
    min-height: 86px;
    padding: 0.85rem;
    border: 1px solid rgba(7, 80, 86, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(228, 238, 240, 0.72)),
        var(--surface-color);
    box-shadow: 0 16px 34px rgba(22, 35, 42, 0.09);
    overflow: hidden;
    text-align: left;
}

.team-mini-card::after {
    content: "";
    position: absolute;
    right: -22px;
    top: -24px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1px solid rgba(152, 206, 0, 0.5);
    opacity: 0.55;
}

.team-mini-avatar {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--background-color);
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 20px rgba(22, 35, 42, 0.16);
    overflow: hidden;
}

.team-mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-mini-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.team-mini-copy h3 {
    margin: 0 0 0.2rem;
    font-size: 0.95rem;
    line-height: 1.2;
    color: var(--text-color-black);
}

.team-mini-copy p {
    margin: 0;
    color: rgba(22, 35, 42, 0.68);
    font-size: 0.78rem;
    font-weight: 700;
}

.team-socials-compact {
    flex: 0 0 auto;
    gap: 0.3rem;
    margin-top: 0;
}

.team-socials-compact .team-social-link {
    width: 1.85rem;
    height: 1.85rem;
    color: var(--primary-color);
    background: rgba(7, 80, 86, 0.08);
    border-color: rgba(7, 80, 86, 0.14);
}

.team-socials-compact .team-social-link svg {
    width: 0.88rem;
    height: 0.88rem;
}


.about {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    padding: 8% 0% 8% 0% ;
    background-color: var(--surface-color);
}

.site-footer {
    position: relative;
    overflow: hidden;
    /* margin-top: 4rem; */
    background:
        radial-gradient(circle at 12% 18%, rgba(152, 206, 0, 0.18) 0%, rgba(152, 206, 0, 0) 40%),
        radial-gradient(circle at 88% 76%, rgba(150, 125, 105, 0.22) 0%, rgba(150, 125, 105, 0) 44%),
        linear-gradient(135deg, #03171a 0%, #064046 48%, #0f172a 100%);
    color: var(--text-color);
    border-top: 1px solid rgba(228, 238, 240, 0.22);
}

.footer-glow {
    position: absolute;
    inset: -40% auto auto -10%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(152, 206, 0, 0.16);
    filter: blur(55px);
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
    width: min(1150px, 92vw);
    margin: 0 auto;
    padding: 3.2rem 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.footer-brand p {
    max-width: 40ch;
    color: rgba(228, 238, 240, 0.9);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(228, 238, 240, 0.92);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-pulse {
    margin-top: 1rem;
    padding: 0.7rem 0.9rem;
    border-left: 3px solid var(--accent-color);
    background: rgba(228, 238, 240, 0.08);
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--background-color);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(228, 238, 240, 0.2);
    padding: 0.9rem 1rem 1.2rem;
    color: rgba(228, 238, 240, 0.86);
}

@media (max-width: 900px) {
    .main-nav {
        width: min(100% - 2rem, 760px);
        gap: 1rem;
    }

    .nav-list {
        gap: 0.85rem;
    }

    .team-container {
        width: min(100%, 720px);
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        padding-top: 2rem;
    }

    .team-container .inner-container-0,
    .team-container .inner-container-1,
    .team-container .inner-container-2,
    .team-container .inner-container-3 {
        grid-column: auto;
        transform: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .hero-widget {
        max-width: min(96vw, 980px);
        padding: 0.62rem 0.72rem;
        gap: 0.75rem;
    }

    .hero-widget-items {
        padding-left: 0.62rem;
        gap: 0.5rem;
    }

    .insights-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .year-tabs {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .top-banner {
        justify-content: center;
        font-size: 0.78rem;
    }

    .main-nav {
        flex-direction: column;
        padding: 0.8rem 0 1rem;
    }

    .main-nav .logo-nav-img {
        height: 64px;
    }

    .nav-list {
        width: 100%;
        justify-content: center;
        gap: 0.7rem 1rem;
        font-size: 0.92rem;
    }

    .hero-section {
        min-height: 36rem;
        padding-top: 3rem;
        font-size: 1rem;
    }

    .hero-text br {
        display: none;
    }

    .hero-widget {
        width: min(100%, 560px);
        border-radius: 14px;
        padding: 0.56rem 0.62rem;
        gap: 0.56rem;
        align-items: stretch;
        flex-direction: column;
    }

    .hero-widget-items {
        padding-left: 0;
        padding-top: 0.5rem;
        border-left: 0;
        border-top: 1px solid rgba(228, 238, 240, 0.26);
    }

    .hero-widget-chip,
    .hero-widget-empty {
        font-size: 0.8rem;
    }

    .slide {
        height: 300px;
    }

    .carousel-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .carousel-thumbnails {
        grid-auto-columns: 86px;
    }

    .prev, .next {
        width: 46px;
        font-size: 0;
    }

    .prev::before,
    .next::before {
        font-size: 1.5rem;
        line-height: 1;
    }

    .prev::before {
        content: "<";
    }

    .next::before {
        content: ">";
    }

    .team-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
        padding-inline: 1.2rem;
    }

    .team-year-header,
    .team-archive-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
        padding-inline: 0.2rem;
    }

    .team-container [class^="inner-container-"] {
        min-height: 300px;
        border-radius: 18px;
    }

    .team-archive {
        margin-top: 0;
    }

    .team-mini-card {
        width: 100%;
    }

    .footer-inner {
        width: min(100% - 2rem, 520px);
        text-align: center;
    }

    .footer-brand p {
        margin-inline: auto;
    }
}
