/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Child theme for Hello Elementor
Author: Antu Paul
Template: hello-elementor
Version: 1.0.0
*/

/* Import parent styles */
@import url("../hello-elementor/style.css");


.movie-banner {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -145px;
  padding-top: 80px;
}

/* Dark overlay for readability */
.movie-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

/* Content */
.banner-content {
  position: relative;
  color: #fff;
}


/* Title */
.movie-title {
  color: #FF0000 !important;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 8vw, 7rem);
  line-height: 1.1;
  word-break: break-word;
  margin: 0;
  letter-spacing: 2px;
}

/* Breadcrumb */
.breadcrumb {
  margin-top: 15px;
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: transform 0.2s ease-out, color 0.2s ease-out, opacity 0.2s ease-out;
  display: inline-block;
  /* important for transform to apply properly */
}

.breadcrumb a:hover {
  transform: scale(1.15);
  /* stronger zoom so it’s noticeable */
  color: #FF0000;
  opacity: 1;
}

.breadcrumb a:hover svg {
  fill: #FF0000;
  transition: fill 0.2s ease-out;
  /* smooth icon color change */
}

a.home-link svg,
.breadcrumb-separator svg,
.current svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-bottom: -3px;
}

.breadcrumb span {
  margin: 0 6px;
  color: #ccc;
}

.breadcrumb .current {
  color: #fff;
  font-weight: 500;
}
@media(max-width:1024px){
	.banner-content{
		padding-top:90px;
	}
}







/* ─── Movie Trailer Section ──────────────────────────────────────── */

.movie-trailer,
.movie-info-section {
  width: min(1140px, 100%);
  margin-inline: auto;
  box-sizing: border-box;
}

.movie-trailer {
  padding: clamp(40px, 8vw, 100px) 5px clamp(30px, 5vw, 50px);
}

.movie-info-section {
  padding: clamp(30px, 5vw, 50px) 5px;
}


/* ─── Glass container ────────────────────────────────────────────── */

.trailer-container {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}


.trailer-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.2);
  pointer-events: none;
}

.trailer-container:hover {
  transform: translateY(-5px);
}

/* ─── 16 ∶ 9 aspect-ratio wrapper ─────────── */

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

@supports not (aspect-ratio: 16 / 9) {
  .video-wrapper {
    padding-top: 56.25%;
    height: 0;
  }
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ─── Fallback message ──────────── */

.video-fallback {
  padding: clamp(40px, 6vw, 80px) 20px;
  text-align: center;
  color: #7a7a7a;
}

/* ─── Responsive breakpoints ──────────── */

@media (max-width: 768px) {

  .movie-trailer,
  .movie-info-section {
    padding-inline: 12px;
  }

  .trailer-container {
    border-radius: 2px;
  }

  /* Lift effect is subtle on touch — keep it but reduce it */
  .trailer-container:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 480px) {
  .movie-trailer {
    padding-inline: 8px;
  }

  .trailer-container {
    border-radius: 2px;
  }
}








/* Container */
.movie-info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
}

/* Poster */
.movie-poster img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Right Content */
.movie-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Title */
.movie-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #FF0000;
  margin-bottom: 20px;
}

/* Description */
.movie-description {
  font-size: 16px;
  line-height: 1.7;
  color: #7A7A7A;
}














/* ===== Responsive ===== */


/* ===== Large Tablets (≤1024px) ===== */
@media (max-width: 1024px) {
  .movie-banner {
    height: 320px;
    padding: 0 20px;
  }

  .movie-title {
    letter-spacing: 1px;
  }
}






/* ===== Tablets (≤768px) ===== */

@media (max-width: 992px) {
  .movie-info-container {
    grid-template-columns: 260px 1fr;
    gap: 30px;
  }
}



@media (max-width: 768px) {
  .movie-banner {
    height: 280px;
    padding: 0 16px;
  }

  .movie-title {
    font-size: clamp(2rem, 7vw, 4rem);
  }

  .breadcrumb {
    font-size: 13px;
  }


  .movie-trailer {
    padding: 40px 15px;
  }


  .movie-info-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .movie-poster {
    max-width: 260px;
    margin: 0 auto;
  }

  .movie-details {
    align-items: center;
  }

  .movie-description {
    text-align: center;
  }
}

/* ===== Mobile (≤576px) ===== */
@media (max-width: 576px) {
  .movie-banner {
    height: 350px;
    padding: 0 12px;
  }

  .movie-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .breadcrumb {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Make breadcrumb wrap nicely */
  .breadcrumb span,
  .breadcrumb a {
    display: inline-block;
  }
}


@media (max-width: 480px) {
  .movie-trailer {
    padding: 30px 10px;
  }


  .movie-title {
    font-size: 1.8rem;
  }

  .movie-description {
    font-size: 14px;
  }
}



/* ===== Small Mobile (≤400px) ===== */
@media (max-width: 400px) {
  

  .movie-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .breadcrumb {
    font-size: 11px;
  }
}











/* ==========================================================
   CREW & CASTS SECTION
   Add to your child theme's style.css.
   Depends on: Oswald (already loaded from the movie slider).
   ========================================================== */


/* ── Section wrapper ─────────────────────────────────────── */
.cbz-cast-section {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  padding: 40px 0 50px;
  /* Contain the slider so it never bleeds wider than the section */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 1179px) {
  .cbz-cast-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .cbz-cast-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── Section heading ─────────────────────────────────────── */
.cbz-cast-heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FF0000 !important;
  margin: 0 0 28px;
  padding: 0;
  line-height: 1.1;
  /* Left-aligned, no flex decorations */
  display: block;
}

/* Hide the decorative bars — heading style is now text-only like the image */
.cbz-cast-heading__bar {
  display: none;
}


/* ══════════════════════════════════════════════════════════
   STATIC GRID  (≤ 4 cast members)
   4 columns → 2 on tablet → 1 on mobile
══════════════════════════════════════════════════════════ */
.cbz-cast-static-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 28px;
  padding: 10px 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cbz-cast-static-grid .cbz-cast-slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(25% - 21px);
  flex: 0 0 calc(25% - 21px);
  min-width: 180px;
  max-width: 280px;
}

@media (max-width: 1199px) {
  .cbz-cast-static-grid .cbz-cast-slide {
    -ms-flex: 0 0 calc(33.333% - 19px);
    flex: 0 0 calc(33.333% - 19px);
  }
}

@media (max-width: 767px) {
  .cbz-cast-static-grid .cbz-cast-slide {
    -ms-flex: 0 0 calc(50% - 14px);
    flex: 0 0 calc(50% - 14px);
  }
}

@media (max-width: 479px) {
  .cbz-cast-static-grid .cbz-cast-slide {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* ══════════════════════════════════════════════════════════
   SLIDER TRACK  (> 4 cast members)
   4 cards visible on desktop, scaling down per breakpoint
══════════════════════════════════════════════════════════ */
.cbz-cast-track-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cbz-cast-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 28px;
  padding: 10px 0 20px;
  will-change: transform;
}

/* 4 cards on desktop */
.cbz-cast-track .cbz-cast-slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(25% - 21px);
  flex: 0 0 calc(25% - 21px);
  min-width: 180px;
}

@media (max-width: 1199px) {

  /* laptop: 3 cards */
  .cbz-cast-track .cbz-cast-slide {
    -ms-flex: 0 0 calc(33.333% - 19px);
    flex: 0 0 calc(33.333% - 19px);
  }
}

@media (max-width: 767px) {

  /* tablet: 2 cards */
  .cbz-cast-track .cbz-cast-slide {
    -ms-flex: 0 0 calc(50% - 14px);
    flex: 0 0 calc(50% - 14px);
  }
}

@media (max-width: 479px) {

  /* mobile: 1 card + peek */
  .cbz-cast-track .cbz-cast-slide {
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
  }
}

/* Pause on hover / focus-within */
.cbz-cast-track-wrap:hover .cbz-cast-track,
.cbz-cast-track-wrap:focus-within .cbz-cast-track {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}


/* ══════════════════════════════════════════════════════════
   CAST CARD  — shared between grid & slider
   No aspect-ratio — height driven by natural image height.
══════════════════════════════════════════════════════════ */
.cbz-cast-card {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: #0d0d0d;
  /* box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.55),
        0 2px 6px  rgba(0, 0, 0, 0.3); */
  -webkit-transition:
    -webkit-transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition:
    transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Crisp corners — remove or adjust to taste */
  border-radius: 2px;
}

.cbz-cast-card:hover,
.cbz-cast-card:focus-visible {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);

  outline: 2px solid rgba(255, 255, 255, 0.2);
  outline-offset: 3px;
}


/* ── Image wrapper ───────────────────────────────────────── */
.cbz-cast-card__img-wrap {
  width: 100%;
  /* Fixed height enforces uniform card height across all cards */
  height: 320px;
  overflow: hidden;
  line-height: 0;
}

.cbz-team-card .cbz-cast-card__img-wrap {
  height: 420px;
}



@media (max-width: 767px) {
  .cbz-cast-card__img-wrap {
    height: 260px;
  }

  .cbz-team-card .cbz-cast-card__img-wrap {
    height: 360px;
  }
}

@media (max-width: 479px) {
  .cbz-cast-card__img-wrap {
    height: 300px;
  }

  .cbz-team-card .cbz-cast-card__img-wrap {
    height: 300px;
  }
}

.cbz-cast-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  /* Start: greyscale + slight dark */
  -webkit-filter: grayscale(100%) brightness(0.82);
  filter: grayscale(100%) brightness(0.82);

  /* Slight zoom-out ready for hover zoom */
  -webkit-transform: scale(1.04);
  transform: scale(1.04);

  -webkit-transition:
    -webkit-filter 0.6s ease,
    -webkit-transform 0.65s ease;
  transition:
    filter 0.6s ease,
    transform 0.65s ease;
}

.cbz-cast-card:hover .cbz-cast-card__img,
.cbz-cast-card:focus-visible .cbz-cast-card__img {
  /* Hover: full colour, natural scale */
  -webkit-filter: grayscale(0%) brightness(1);
  filter: grayscale(0%) brightness(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}


/* ── Glass overlay — slides up from bottom on hover ─────── */
.cbz-cast-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 14px 16px;

  background: rgba(8, 8, 16, 0.55);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;

  /* Start: hidden below the card */
  -webkit-transform: translateY(100%);
  transform: translateY(100%);

  /* Bouncy spring easing */
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cbz-cast-card:hover .cbz-cast-card__overlay,
.cbz-cast-card:focus-visible .cbz-cast-card__overlay {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}


/* ── Actor / Actress name (row 1) ────────────────────────── */
.cbz-cast-card__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  color: #FF0000;
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.8rem, 1.1vw, 1.05rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}


/* ── Designation (row 2) ─────────────────────────────────── */
.cbz-cast-card__designation {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.7rem, 0.9vw, 0.85rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  font-style: italic;
}


/* ══════════════════════════════════════════════════════════
   REDUCED MOTION  — respect user OS preference
══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .cbz-cast-card {
    -webkit-transition: none;
    transition: none;
  }

  .cbz-cast-card__img {
    -webkit-filter: grayscale(0%) !important;
    filter: grayscale(0%) !important;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
    -webkit-transition: none;
    transition: none;
  }

  .cbz-cast-card__overlay {
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
    -webkit-transition: none;
    transition: none;
  }
}
























/* ══════════════════════════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════════════════════════ */
.cbz-team-section {
  width: 100%;
  padding: 60px 5px 120px;
  overflow: hidden;
}

/* ── Container ── */
.cbz-team-container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}


/* ══════════════════════════════════════════════════════════════
   SECTION HEADING
══════════════════════════════════════════════════════════════ */
.cbz-team-heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #FF0000 !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 12px;
  position: relative;
}



/* ══════════════════════════════════════════════════════════════
   TABS
══════════════════════════════════════════════════════════════ */
.cbz-team-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  margin: 36px 0 40px;
}

.cbz-team-tab {
  font-family: "Oswald", sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #aaa;
  background: transparent;
  border: 1px solid #FF0000;
  padding: 9px 22px;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: color .25s ease, border-color .25s ease, background .25s ease;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
  outline: none;
  position: relative;
  overflow: hidden;
}

.cbz-team-tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FF0000;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform .3s cubic-bezier(.4, 0, .2, 1);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
}

.cbz-team-tab:hover::before,
.cbz-team-tab.active::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.cbz-team-tab:hover,
.cbz-team-tab.active {
  color: #ffffff !important;
  border-color: #FF0000;
}

.cbz-team-tab span,
.cbz-team-tab {
  position: relative;
  z-index: 1;
}

.cbz-team-tab:focus-visible {
  outline: 2px solid #FF0000;
  outline-offset: 3px;
}


/* ══════════════════════════════════════════════════════════════
   PANELS
══════════════════════════════════════════════════════════════ */
.cbz-team-panel {
  display: none;
  -webkit-animation: cbzPanelFadeIn .35s ease both;
  animation: cbzPanelFadeIn .35s ease both;
}

.cbz-team-panel.active {
  display: block;
}

@-webkit-keyframes cbzPanelFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes cbzPanelFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ══════════════════════════════════════════════════════════════
   CARD GRID
══════════════════════════════════════════════════════════════ */
.cbz-team-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

/* Desktop: 3 per row */
.cbz-team-grid .cbz-team-card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(33.333% - 21px);
  flex: 0 0 calc(33.333% - 21px);
  min-width: 250px;
  max-width: 340px;
}

/* Laptop: 3 per row */
@media (max-width: 1099px) {
  .cbz-team-grid .cbz-team-card {
    -ms-flex: 0 0 calc(33.333% - 19px);
    flex: 0 0 calc(33.333% - 19px);
  }
}

/* Tablet: 2 per row */
@media (max-width: 767px) {
  .cbz-team-grid .cbz-team-card {
    -ms-flex: 0 0 calc(50% - 14px);
    flex: 0 0 calc(50% - 14px);
  }
}

/* Mobile: 1 per row */
@media (max-width: 479px) {
  .cbz-team-grid {
    gap: 20px;
  }

  .cbz-team-grid .cbz-team-card {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    min-width: 0;
  }
}


/* ══════════════════════════════════════════════════════════════
   CARD
   No aspect-ratio — height is determined by content + image
══════════════════════════════════════════════════════════════ */
.cbz-team-card {
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: default;
  transition: all 1s ease;
}

.cbz-team-card:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}


/* ── Image wrapper ── */
.cbz-team-card__img-wrap {
  width: 100%;
  overflow: hidden;
  min-height: 240px;
  max-height: 360px;
}

.cbz-team-card__img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: 360px;
  object-fit: cover;
  display: block;
  -webkit-filter: grayscale(100%) brightness(.85);
  filter: grayscale(100%) brightness(.85);
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transition: -webkit-filter .55s ease, -webkit-transform .6s ease;
  transition: filter .55s ease, transform .6s ease;
}

.cbz-team-card:hover .cbz-team-card__img {
  -webkit-filter: grayscale(0%) brightness(1);
  filter: grayscale(0%) brightness(1);
  -webkit-transform: scale(1);
  transform: scale(1) 1s ease;
}


/* ── Glass overlay — always visible, slides up further on hover ── */
.cbz-team-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: rgba(10, 10, 20, .5);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, .12);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform .45s cubic-bezier(.34, 1.56, .64, 1);
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
}

.cbz-team-card:hover .cbz-team-card__overlay {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}


/* ── Name ── */
.cbz-team-card__name {
  font-family: "Oswald", sans-serif;
  font-size: clamp(.9rem, 1.3vw, 1.1rem);
  font-weight: 600;
  color: #FF0000 !important;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 5px;
  line-height: 1.3;
  text-align: center;
}


/* ── Designation ── */
.cbz-team-card__designation {
  font-family: "Barlow", sans-serif;
  font-size: .78rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .03em;
  margin: 0 0 10px;
  text-align: center;
  line-height: 1.4;
}


/* ── Social icons ── */
.cbz-team-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cbz-team-social__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid #FF0000;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  -webkit-transition: background .25s ease, color .25s ease, border-color .25s ease,
    -webkit-transform .25s ease;
  transition: background .25s ease, color .25s ease, border-color .25s ease,
    transform .25s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cbz-team-social__link svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: #FF0000;
  fill: none;
}

.cbz-team-social__link:hover,
.cbz-team-social__link:focus-visible {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.cbz-team-social__link:hover svg,
.cbz-team-social__link:focus-visible svg {
  stroke: #fff;
}

.cbz-team-social__link:focus-visible {
  outline: 2px solid #FF0000;
  outline-offset: 2px;
}