.jsda-about-hero {
  position: relative;
  min-height: 100vh;
  background: url("https://jgu.edu.in//storage/1536/HeroSectionABOUTUS.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* overlay */
.jsda-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* dark overlay for readability */
.jsda-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* keep content above overlay */
.jsda-hero-content {
  position: relative;
  z-index: 2;
}

.jsda-hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 100px;
}

.jsda-sub-title {
  font-size: 20px;
  opacity: 0.85;
  margin-bottom: 25px;
}

.jsda-description {
  font-size: 27px;
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: 400;
}

/* button */
.jsda-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;          /* Increased padding */
  border: 2px solid #000;      /* Slightly thicker border */
  border-radius: 14px;         /* More smooth look */
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 18px;             /* Bigger text */
  font-weight: 700;            /* Slightly bold */
  transition: all 0.3s ease;
}

/* Arrow styling */
.jsda-apply-btn .arrow {
  display: inline-block;
  font-size: 20px;             /* Bigger arrow */
  transition: transform 0.3s ease;
}

/* Hover effect */
.jsda-apply-btn:hover {
  background: #e5e2e2;
  color: #000;
}

/* Arrow animation */
.jsda-apply-btn:hover .arrow {
  transform: rotate(45deg) translateX(4px);
}


/* HORIZONTAL CARD ROW */
.jsda-program-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px 40px;
  padding-top: 80px;
}

/* optional: hide scrollbar */
.jsda-program-wrapper::-webkit-scrollbar {
  display: none;
}

/* transparent glass cards */
.jsda-program-card {
  width: 320px;
  padding: 40px 32px;
  border-radius: 24px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.03)
  );
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25);

  transition: background 0.35s ease, border 0.35s ease, letter-spacing 0.35s ease;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
}

.jsda-program-card:hover {
  background: linear-gradient(
    135deg,
    rgba(48, 48, 48, 0.62),
    rgba(24, 24, 24, 0.5)
  );
  border-color: rgba(210, 210, 210, 0.52);
}

.jsda-program-card .program-title,
.jsda-program-card .program-subtitle {
  display: block;
}

.jsda-program-card .program-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.22;
}

.jsda-program-card .program-subtitle {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

/* DESKTOP-ONLY PROGRAM CARD SCALE */
@media (min-width: 1025px) {
  .jsda-about-hero,
  .jsda-program-card,
  .jsda-program-card .program-title,
  .jsda-program-card .program-subtitle {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-synthesis: none;
  }

  .jsda-program-wrapper {
    gap: 28px;
    padding: 88px 36px 20px;
    align-items: stretch;
    justify-content: center;
    overflow-x: visible;
  }

  .jsda-program-card {
    flex: 1 1 0;
    width: auto;
    max-width: 420px;
    min-width: 300px;
    min-height: 178px;
    padding: 38px 24px;
    border-radius: 30px;
    background-color: rgba(255,255,255,0.12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .jsda-program-card .program-title {
    font-size: 24px;
    line-height: 1.22;
    font-weight: 800;
    font-family: "Lato", "Segoe UI", Arial, sans-serif;
    width: 100%;
    text-align: center;
    padding-inline: 12px;
    box-sizing: border-box;
  }

  .jsda-program-card .program-subtitle {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.24;
    font-weight: 500;
    font-family: "Lato", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
    width: 100%;
    text-align: center;
    padding-inline: 12px;
    box-sizing: border-box;
  }

  .jsda-program-card:nth-child(1) .program-title,
  .jsda-program-card:nth-child(1) .program-subtitle,
  .jsda-program-card:nth-child(2) .program-title,
  .jsda-program-card:nth-child(2) .program-subtitle,
  .jsda-program-card:nth-child(3) .program-subtitle {
    white-space: nowrap;
  }

  .jsda-program-card:nth-child(3) .program-subtitle {
    font-size: 18px;
  }
}

/* card stays stable 
.jsda-program-card:hover {
  transform: none;
  letter-spacing: normal;
  font-weight: 500;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.16),
    rgba(255,255,255,0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.523);
  letter-spacing: 0.4px;
}*/

/* responsive */
@media (max-width: 992px) {
  .jsda-hero-content h1 {
    font-size: 42px;
  }
  .jsda-description {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .jsda-program-card {
    width: 100%;
  }

  .jsda-program-card .program-title {
    font-size: 18px;
  }

  .jsda-program-card .program-subtitle {
    font-size: 16px;
  }
}

@media (max-width:768px){
  .jsda-about-hero::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:200px;
    background:linear-gradient(to bottom, transparent, #000);
  }
}

/* ================= MOBILE GRID 2x2 ================= */
@media (max-width: 768px) {

  .jsda-description {
    max-width: 34ch;
    margin: 0 auto 30px;
    line-height: 1.35;
    font-size: clamp(16px, 4.6vw, 18px);
    display: block;
    overflow: visible;
  }

  .jsda-description br {
    display: none;
  }

  .jsda-program-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 16px;
    margin-top: 25px;
  }

  .jsda-program-card {
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding: 20px 14px;
    font-size: 14px;
    line-height: 1.4;
  }

  .jsda-program-card .program-title {
    font-size: 16px;
  }

  .jsda-program-card .program-subtitle {
    margin-top: 4px;
    font-size: 14px;
  }
}


.jsda-mission-section {
  background: #000;
  padding: 90px 20px;
  color: #fff;
}

/* CONTAINER */
.jsda-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.jsda-mission-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.jsda-title-line {
  width: 70px;
  height: 3px;
  background: #fff;
  margin: 0 auto 30px;
}

/* DESCRIPTION */
.jsda-mission-desc {
  text-align: center;
  max-width: 1280px;
  margin: auto;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 500;
  color: #cfcfcf;
  margin-bottom: 60px;
}

/* GRID */
.jsda-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.jsda-mission-card {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.222);
  padding: 35px;
  border-radius: 22px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

/* PROMINENT HOVER — no jump */
.jsda-mission-card:hover {
  background: rgba(120, 120, 120, 0.20);  /* darker grey */
  border-color: rgba(100, 100, 100, 0.5);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08) inset,
    0 12px 30px rgba(0, 0, 0, 0.1);
}


/* ICON NUMBER BOX */
.jsda-icon {
  min-width: 55px;
  height: 55px;
  background: #fff;
  color: #000;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* TEXT */
.jsda-mission-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.jsda-mission-card p {
  color: #bdbdbd;
  line-height: 1.7;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .jsda-mission-grid {
    grid-template-columns: 1fr;
  }

  .jsda-mission-title {
    font-size: 36px;
  }

  .jsda-mission-desc {
    font-size: 18px;
  }
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ================= SECTION ================= */

.jsda-edge-section {
  background: #f4f4f4;
  padding: 100px 20px;
}

.jsda-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADINGS ================= */

.jsda-edge-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.jsda-edge-sub {
  text-align: center;
  font-size: 18px;
  color: #6b6b6b;
  margin-bottom: 40px;
}

.jsda-edge-tagline {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
  margin-bottom: 70px;
}

.jsda-edge-tagline::before {
  content: "\201D";
  position: absolute;
  left: 14px;
  top: -6px;
  font-size: 80px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-family: "Lato", sans-serif;
  display: inline-block;
  transform: scaleX(-1);
}

.jsda-edge-tagline::after {
  content: "\201D";
  position: absolute;
  right: 14px;
  bottom: -6px;
  font-size: 80px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

/* ================= SWIPER ================= */

.jsda-edgeSwiper {
  position: relative;
}

.jsda-edgeSwiper .swiper-wrapper {
  align-items: stretch;
}

.jsda-edgeSwiper .swiper-slide {
  display: flex;
  height: auto;
}

/* ================= CARD ================= */

.jsda-edge-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: 0.3s ease;
}

/* Equal image */
.jsda-edge-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

/* Title */
.jsda-edge-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;   /* reduce gap */
  min-height: auto;     /* remove forced height */
}

.jsda-underline {
  width: 100%;
  height: 1px;
  background: #dcdcdc;
  margin: 6px 0 12px;   /* top 6px, bottom 12px */
}

.jsda-edge-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0;            /* remove extra space */
}


/* ================= PAGINATION ================= */

.jsda-edgeSwiper .swiper-pagination {
  position: relative;
  margin-top: 50px;   /* SAFE GAP from cards */
  text-align: center;
}

/* Bullets */
.jsda-edgeSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0,0,0,0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.jsda-edgeSwiper .swiper-pagination-bullet-active {
  width: 28px;
  height: 10px;
  background: #000;
  border-radius: 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .jsda-edge-title {
    font-size: 38px;
  }

  .jsda-edge-tagline {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .jsda-edge-section {
    padding: 70px 20px;
  }

  .jsda-edge-title {
    font-size: 30px;
  }

  .jsda-edge-tagline {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .jsda-edge-card img {
    height: 220px;
  }
}





/* ================= HERO SECTION ================= */

.hero-slider {
  width: 100%;
  background: #000;
  color: #fff;
  padding-bottom: 36px;
  font-family: "Lato", sans-serif;
}

/* ================= TOP HEADING ================= */

.hero-top-heading {
  text-align: center;
  padding: 110px 20px 80px;
  background: #000;
}

.hero-top-heading h2 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero-top-heading p {
  font-size: 22px;
  color: #ccc;
  max-width: 900px;
  margin: 0 auto;
}

/* ================= SLIDER AREA ================= */

.slider-area {
  position: relative;
  height: 80vh;
  overflow-x: hidden;
  overflow-y: hidden;
  margin-bottom: 0;
}

/* ================= SLIDES WRAPPER ================= */

.slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

/* ================= SINGLE SLIDE ================= */

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

@media (min-width: 769px) {
  .slide {
    background-attachment: fixed;
  }
}

/* ================= DARK OVERLAY ================= */

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.62) 28%,
    rgba(0, 0, 0, 0.34) 52%,
    rgba(0, 0, 0, 0.12) 72%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* ================= SLIDE CONTENT ================= */

.content {
  position: absolute;
  bottom: 34px;
  left: 50px;
  transform: none;
  max-width: 700px;
  z-index: 2;
  --text-inset: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.content::before {
  content: none;
}

.content h1 {
  font-size: clamp(42px, 4.4vw, 50px);
  margin: 0 0 18px 0;
  line-height: 1.05;
  letter-spacing: -0.4px;
  font-weight: 800;
  background: transparent;
  display: block;
  padding: 0 var(--text-inset);
  border-radius: 0;
}

.content p {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
  margin: 0 0 22px 0;
  font-weight: 500;
  max-width: 780px;
  padding-left: var(--text-inset);
  padding-right: var(--text-inset);
  text-indent: 0;
}

/* ================= BENEFITS BOX ================= */

.benefits {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 22px var(--text-inset);
  margin: 0;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  text-align: left;
}

/* ================= DOTS ================= */

.dots {
  position: static;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  z-index: 2;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  opacity: 1;
  transform: scale(1.2);
}

/* ================= BOTTOM GRADIENT ================= */

.slider-area::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .hero-top-heading h2 {
    font-size: 36px;
  }

  .hero-top-heading p {
    font-size: 16px;
  }

  .content {
    bottom: 20px;
    left: 16px;
    right: 5%;
    --text-inset: 16px;
  }

  .content h1 {
    font-size: 34px;
  }

  .content p {
    font-size: 17px;
  }

  .content::before {
    content: none;
  }

  .hero-slider {
    padding-bottom: 24px;
  }

  .slider-area {
    margin-bottom: 0;
  }

  .dots {
    margin-top: 10px;
  }
}




.jsda-mission-quote {
  background: #000;
  padding: 72px 20px 52px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.jsda-mission-quote h2 {
  color: #fff;
  text-align: center;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
  white-space: normal;
  margin: auto;
}

.jsda-mission-quote-line {
  display: block;
  position: relative;
  max-width: 1400px;
  padding: 0 18px;
  margin: 0 auto;
}

.jsda-mission-quote-line::before {
  content: "\201D";
  position: absolute;
  left: 4px;
  top: -6px;
  font-size: 80px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-family: "Lato", sans-serif;
  display: inline-block;
  transform: scaleX(-1);
}

.jsda-mission-quote-line::after {
  content: "\201D";
  position: absolute;
  right: 4px;
  bottom: -6px;
  font-size: 80px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

@media (max-width: 768px) {
  .jsda-mission-quote h2 {
    font-size: 34px;
  }

  .jsda-mission-quote-line {
    max-width: 100%;
    padding: 0 18px;
  }

  .jsda-mission-quote {
    padding: 52px 16px 36px;
  }

  .jsda-mission-quote-line::before {
    font-size: 34px;
    top: -1px;
    left: 6px;
  }

  .jsda-mission-quote-line::after {
    font-size: 34px;
    right: 6px;
    bottom: -2px;
  }
}

.jsda-mission-section {
  padding-bottom: 40px;
}

.jsda-mission-quote {
  padding-top: 28px;
}



.jsda-luminaries-section {
  background: #000;
  padding: 52px 20px 70px;
  color: #fff;
}

/* header */
.jsda-advisory-header {
  text-align: center;
  margin-bottom: 80px;
}

.jsda-advisory-header h2 {
  font-size: 56px;
  font-weight: 700;
}

.jsda-advisory-header p {
  color: #cfcfcf;
  font-size: 20px;
  margin-top: 10px;
}

.jsda-luminaries-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin: 50px 0 70px;
}

/* SWIPER */
.jsda-luminariesSwiper {
  padding: 0 40px 50px;
}

.jsda-luminariesSwiper .swiper-slide {
  height: auto;
  display: flex;
}

/* CARD */
.jsda-luminary-card {
  background: linear-gradient(180deg, #111 0%, #0b0f1a 100%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
  width: 100%;
}

/* IMAGE */
.jsda-luminary-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* CONTENT */
.jsda-luminary-content {
  padding: 26px;
}

.jsda-luminary-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.jsda-role-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #bdbdbd;
  margin-bottom: 8px;
}

.jsda-dept {
  font-size: 14px;
  color: #9fa6b2;
  margin-bottom: 14px;
}

.jsda-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* hover */
.jsda-luminary-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.25);
}

/* DOTS */
.jsda-luminariesSwiper .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.jsda-luminariesSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.35);
  opacity: 1;
}

.jsda-luminariesSwiper .swiper-pagination-bullet-active {
  width: 28px;
  height: 10px;
  background: #fff;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width:1024px){
  .jsda-luminariesSwiper {
    padding: 0 20px 40px;
  }
}

@media (max-width:768px){
  .jsda-luminary-card img {
    height: 280px;
  }
}

@media (max-width:480px){
  .jsda-luminary-card img {
    height: 240px;
  }
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

  .jsda-luminaries-section {
    padding: 70px 14px 40px;
  }

  .jsda-advisory-header h2 {
    font-size: 32px;
  }

  .jsda-advisory-header p {
    font-size: 15px;
  }

  .jsda-luminaries-title {
    font-size: 22px;
    margin: 30px 0 40px;
    line-height: 1.4;
  }

  .jsda-luminariesSwiper {
    padding: 0 6px 40px;
  }

  .jsda-luminariesSwiper .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .jsda-luminary-card {
    width: 92%;
    border-radius: 18px;
  }

  .jsda-luminary-card img {
    height: 280px;
    object-position: center top;
  }

  .jsda-luminary-content {
    padding: 18px;
  }

  .jsda-luminary-content h3 {
    font-size: 20px;
  }

  .jsda-role-row {
    font-size: 13px;
  }

  .jsda-dept {
    font-size: 13px;
  }

  .jsda-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .jsda-luminariesSwiper .swiper-pagination {
    margin-top: 20px;
  }
}



.jsda-events-section {
  background: #f5f5f5;
  padding: 90px 20px 28px;
}

.jsda-container {
  max-width: 1200px;
  margin: auto;
}

/* headings */
.jsda-events-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.jsda-events-sub {
  text-align: center;
  color: #6b6b6b;
  margin: 12px 0 35px;
}

.jsda-events-tagline {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 56px;
  position: relative;
  margin-bottom: 60px;
}

.jsda-events-tagline::before {
  content: "\201D";
  position: absolute;
  left: 14px;
  top: -6px;
  font-size: 80px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-family: "Lato", sans-serif;
  display: inline-block;
  transform: scaleX(-1);
}

.jsda-events-tagline::after {
  content: "\201D";
  position: absolute;
  right: 14px;
  bottom: -6px;
  font-size: 80px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

/* card */
.jsda-event-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.jsda-event-card img {
  width: 100%;
  height: clamp(220px, 18vw, 280px);
  object-fit: contain;
  object-position: center;
  background: transparent;
  padding: 0;
  display: block;
  aspect-ratio: auto;
}


.jsda-event-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 154px;
}

.jsda-event-content h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  min-height: calc(2 * 1.2em);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jsda-event-content span {
  display: block;
  color: #333;
  font-weight: 600;
  line-height: 1.25;
  min-height: calc(1 * 1.25em);
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jsda-event-content p {
  color: #777;
  margin-top: 3px;
  line-height: 1.2;
}

/* dots */
.swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #000;
  width: 18px;
  border-radius: 10px;
}

.jsda-eventsSwiper {
  width: 100%;
  padding: 0 10px;
}

.jsda-eventsSwiper .swiper-wrapper {
  align-items: stretch;
}

.jsda-eventsSwiper .swiper-slide {
  height: auto;
  user-select: none;
}

/* .jsda-events-section .jsda-container {
  max-width: 100%;
  padding: 0 40px;
} */

.jsda-eventsSwiper .swiper-pagination {
  margin-top: 35px;
  position: relative;
}

/* normal dots */
.jsda-eventsSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cfcfcf;
  opacity: 1;
  transition: all 0.3s ease;
}

/* active */
.jsda-eventsSwiper .swiper-pagination-bullet-active {
  width: 28px;
  height: 10px;
  background: #000;
  border-radius: 20px;
}

.about-faq-cta {
  background: #f5f5f5;
  margin: 0 auto;
  padding: 8px 0 50px;
  text-align: center;
}

.about-faq-cta p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #111;
}

.about-cta-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
}

.about-cta-btn:hover {
  background: #8a8a8a;
}

@media (max-width: 1024px) {
  .jsda-events-title {
    font-size: 40px;
  }

  .jsda-events-tagline {
    font-size: 24px;
    padding: 0 44px;
    margin-bottom: 44px;
  }

  .jsda-events-tagline::before {
    font-size: 42px;
    left: 10px;
    top: -4px;
  }

  .jsda-events-tagline::after {
    font-size: 42px;
    right: 10px;
    bottom: -4px;
  }

  .jsda-event-content {
    min-height: 148px;
  }
}

@media (max-width: 768px) {
  .jsda-events-section {
    padding: 64px 14px 20px;
  }

  .jsda-events-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .jsda-events-sub {
    margin: 10px 0 24px;
  }

  .jsda-events-tagline {
    font-size: 20px;
    padding: 0 30px;
    margin-bottom: 30px;
  }

  .jsda-events-tagline::before {
    font-size: 34px;
    top: -1px;
    left: 6px;
  }

  .jsda-events-tagline::after {
    font-size: 34px;
    right: 6px;
    bottom: -2px;
  }

  .jsda-event-content {
    padding: 18px;
    min-height: unset;
    gap: 6px;
  }

  .jsda-event-card img {
    height: auto;
    object-fit: contain;
    object-position: center;
    background: #fff;
  }

  .jsda-event-content h4 {
    font-size: 16px;
    line-height: 1.28;
    min-height: unset;
    -webkit-line-clamp: 3;
  }

  .jsda-event-content span {
    font-size: 13px;
    line-height: 1.35;
    min-height: unset;
    -webkit-line-clamp: 2;
  }

  .jsda-event-content p {
    font-size: 13px;
    margin-top: 0;
  }

  .about-faq-cta {
    margin: 0 auto;
    padding: 8px 0 32px;
  }

  .about-faq-cta p {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .about-cta-btn {
    width: min(90vw, 430px);
    padding: 14px 20px;
    font-size: 15px;
  }
}



