/** Shopify CDN: Minification failed

Line 777:0 Unexpected "}"
Line 1056:19 Expected identifier but found whitespace

**/
/* ABOUT HERO */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.about-hero .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  min-height: 540px;
}

.about-hero .hero-slide.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}

.about-hero .hero-media {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-hero .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* FORCE QUALITY */
  opacity: 1 !important;
  filter: none !important;
}

.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11, 42, 74, 0.25),
    rgba(11, 42, 74, 0.15)
  );
  z-index: 2;
}

.about-hero .hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
  max-width: 760px;
  width: 100%;
  top: 50%;
  left: 50%;
  z-index: 2;
}

.about-hero h1 {
  max-width: 900px;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
}

.about-hero p {
  font-size: clamp(36px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.15;
  color: #f6c21c;
  margin: 0;
  max-width: 900px;
}


/* Dots */
.about-hero .hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.about-hero .hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
}

.about-hero .hero-dot.active {
  background: var(--accent-yellow);
}

/* OUR VISION SECTION */
.about-vision {
  position: relative;
  padding: 32px 24px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Overlay for contrast (adjust opacity if needed) */
.about-vision-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.about-vision-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* 👈 EVEN spacing between all items */
}



/* Pill */
.vision-pill {
  display: inline-block;
  font-size: 18px;
    font-weight: 800;
  color: #2fd1e3;
  margin-bottom : -18px;
  border: 2px solid #f6c21c;
    padding: 6px 20px;
    border-radius: 999px;
}

/* Heading */
.vision-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Supporting text */
.vision-text {
  max-width: 500px;
  margin: 10px auto;
  font-size: 15px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
}

.empower-section {
  padding: 40px 0;
  background: #ffffff;
}

.empower-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #123a6f;
  margin-bottom: 80px;
}

.empower-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px 1fr;
  align-items: center;
  gap: 40px;
}

.empower-text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.empower-item h4 {
  font-size: 22px;
  font-weight: 700;
  color: #123a6f;
  margin-bottom: 4px;
}

.empower-item p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #1e1e1e;
}
.empower-visual {
  position: relative;
  height: 450px;
}

.empower-image {
  position: relative;
  z-index: 2;
  max-height: 450px;
  width: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .empower-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .empower-text {
    align-items: center;
  }

  .empower-visual {
    height: 420px;
  }
}
.empower-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(11, 42, 74, 0.25); /* subtle blue */
  margin: 32px 0;
}

.empower-block p {
  margin: 8px 0 0;
  line-height: 1.6;
}
.empower-block h4 {
  margin-bottom: 6px;
}
.empower-divider {
  transform: scaleX(0);
  transform-origin: left;
  animation: dividerIn 0.6s ease forwards;
}

@keyframes dividerIn {
  to { transform: scaleX(1); }
}


/* Section */
.problem-section {
  background: #ffffff;
  padding: 20px 0;
  text-align: center;
}

.problem-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 600;
  background: #0fb0d8;
  color: #fff;
  margin-bottom: 4px;
}

.problem-heading {
  font-size: 48px;
  font-weight: 700;
  color: #163c72;
  margin-bottom: 10px;
}

/* Containers */
.problem-outer {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-inner {
  background: #f3f9fb;
  border-radius: 24px;
  display: flex;
  gap: 150px;
  padding: 40px;
}

/* Left */
.problem-left {
  flex: 1;
  text-align: left;
}

.problem-divider {
  width: 100px;
  height: 10px;
  background-color: rgba(11, 42, 74, 0.25); /* subtle blue */
  margin: 12px auto 32px;
  justify-content : center;
  display : flex;
  border-radius : 15px
}
/* Accordion */
.problem-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  border-bottom: 1px solid #cfe8f1;
  padding-bottom: 20px;
}

/* Default (inactive) */
.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 22px;
  font-weight: 700;
  color: #b5c4d3; /* light */
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Active = dark */
.accordion-item.active .accordion-header {
  color: #163c72;
}

.accordion-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #00a8cc;
  border-bottom: 2px solid #00a8cc;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(-135deg);
}

/* Content */
.accordion-content {
  display: none;
  margin-top: 20px;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
  color: #000
}

.accordion-content li {
  margin-bottom: 8px;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 16px;
  font-weight: 600;
  margin: 16px 0 12px;
}

.tag.blue {
  background: #0fb0d8;
  color: #fff;
}

.tag.yellow {
  background: #f5c400;
  color: #163c72;
}

/* Right */
.problem-right {
  width: 320px;
  display: flex;
  align-items: flex-end;
}

.image-box {
  background: #0fb0d8;
  border-radius: 20px;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.image-box img {
  max-height: 560px;
  object-fit: contain;
}

.about-people {
  background: #ffffff;
  text-align: center;
  padding: 20px 0;
}

.people-pill {
  display: inline-block;
  color: #163c72;
  font-weight: 600;
  font-size: 18px;
    font-weight: 800;
  margin-bottom : -18px;
  border: 2px solid #f6c21c;
    padding: 6px 20px;
    border-radius: 999px;
 }


.people-heading {
  font-size: 44px;
  color: #163c72;
  margin-bottom: 16px;
}

.people-heading span {
  color: #0a8fbf;
}

.people-copy {
  max-width: 720px;
  margin: 0 auto 60px;
}

.people-copy p {
  margin-bottom: 12px;
  color: #3c4c5c;
}

.people-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible; /* IMPORTANT */
}

.people-slider-viewport {
  overflow-x: auto;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-left: 0;
}

.people-slider-track {
  display: flex;
  gap: 32px;
  transition: transform 0.4s ease;
}

.people-card {
  width: 320px;
  min-width: 320px;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--accent-yellow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.people-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.people-card-info {
  margin-top: auto;
  background: #0bb0d3;
  padding: 18px 16px;
  text-align: center;
  color: #fff;
}

.people-card-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #003366;
}

.people-card-info span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.people-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.people-nav {
  position: absolute;
  top: 40%;
  background: #0bb0d3;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

.people-progress {
  width: 960px;
  height: 3px;
  background: #d8e6ef;
  margin: 48px auto 0;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.people-progress span {
  display: block;
  height: 100%;
  background: #0bb0d3;
  width: 30%;
  transition: width 0.3s ease;
}

.people-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0bb0d3;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}
.people-nav.prev {
  left: -24px; /* instead of -60 */
}

.people-nav.next {
  right: -24px;
}

/* ===== ABOUT NEWS ===== */

.about-news {
  background:rgb(238, 250, 252);
  padding: 60px 0;
}

.about-news-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.about-news-left h2 {
  font-size: 48px;
  line-height: 1.15;
  color: #163a6b;
  margin-bottom: 32px;
}

.about-news-left h2 strong {
  font-weight: 800;
}

.news-nav {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  
}

/* Slider */
.about-news-right {
  overflow: hidden;
}

.news-slider-wrapper {
  overflow: hidden;
}

.news-slider {
  display: flex;
  gap: 32px;
  transition: transform 0.4s ease;
}

.news-card {
  width: 360px;
  min-width: 360px;
  height: 480px;
  background: transparent;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  
}

 .news-card-image{
   border: 1px solid #ddd;
  border-radius: 16px;
  height: 200px;
  width : 310px;
  overflow: hidden;       
  margin-bottom: 16px;    
  }

.news-card img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: contain;
  display: block; 
}

.news-card h3 {
 font-size: 18px;
  font-weight: 700;
   color: #163a6b;
  margin-bottom: 12px;
  margin: 0 0 12px;
  min-height: 64px; /* locks 2 lines */
}


.news-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #3f4f63;
  line-height: 1.6;
  margin: 0 0 20px;
  min-height: 96px;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-news-left a.btn-outline {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #ffc400;
  color: #003366;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease;
}
.about-news-left a.btn-outline:hover {
  background: #ffc400;
  color: #003366;
}

.view-btn {
  display : flex;
  justify-content : flex-start;
  align-items : flex-start;
}

.about-news-left a.btn-outline-view {
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #ffc400;
  color: #003366;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease;
}
.about-news-left a.btn-outline-view:hover {
  background: #ffc400;
  color: #003366;
}

/* Read more button */
.news-card a.btn-outline {
  margin-top: auto;
  align-self: flex-start;

  padding: 10px 24px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  border: 2px solid #ffc400;
  color: #003366;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease;
}

.news-card a.btn-outline:hover {
  background: #ffc400;
  color: #003366;
}
.news-card a.btn-outline-view {
  margin-top: auto;

  padding: 10px 24px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  border: 2px solid #ffc400;
  color: #003366;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease;
}

.news-card a.btn-outline-view:hover {
  background: #ffc400;
  color: #003366;
}

}

.btn-outline.small {
  align-self: center;
  padding: 10px 24px;
  background: #fff;
}


@media (max-width: 768px) {
  .about-hero {
    min-height: 420px;
  }
  .about-hero .hero-slide {
    min-height: 420px;
  }
  .about-hero .hero-media {
    height: 420px;
  }
  /* 🔥 KEY FIX */
  .about-hero .hero-content {
    position: absolute;
    inset: 0;
    transform: none;     /* REMOVE translate(-50%, -50%) */
    top: 10%;
    left: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0 24px;
    max-width: 100%;
  }

  .about-hero h1 {
    font-size: 32px;
    line-height: 1.2;
    max-width: 100%;
  }

  .about-hero p {
    font-size: 16px;
    line-height: 1.4;
    max-width: 100%;
  }

  .about-hero .hero-dots {
    bottom: 16px;
  }
}
@media (max-width: 480px) {

  .about-hero {
    min-height: 360px;
  }

  .about-hero .hero-slide {
    min-height: 360px;
  }

  .about-hero .hero-media {
    height: 360px;
  }

  .about-hero h1 {
    font-size: 26px;
  }

  .about-hero p {
    font-size: 14px;
  }

  .about-hero .hero-dots {
    bottom: 12px;
    gap: 8px;
  }

  .hero-dot {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 768px) {

  .about-vision {
    padding: 72px 20px;
  }

  .about-vision-overlay {
    background: rgba(0, 0, 0, 0.45); /* stronger for readability */
  }

  .about-vision-inner {
    max-width: 720px;
  }

  .vision-pill {
    font-size: 13px;
    padding: 6px 16px;
    margin-bottom: 12px;
  }

  .vision-title {
    font-size: 32px;
    line-height: 1.25; /* 🔥 FIX */
    margin-bottom: 16px;
  }

  .vision-text {
    max-width: 640px;
    font-size: 15px;
    line-height: 1.6; /* 🔥 FIX */
  }
}
@media (max-width: 480px) {

  .about-vision {
    padding: 32px 16px;
  }

  .about-vision-inner {
    max-width: 100%;
  }

  .vision-pill {
    font-size: 16px;
    margin-bottom : -10px
  }

  .vision-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .vision-text {
    font-size: 14px;
    line-height: 1.65;
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .empower-section {
    padding: 72px 20px;
  }

  .empower-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .empower-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .empower-text {
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .empower-item h4 {
    font-size: 18px;
  }

  .empower-item p {
    font-size: 14px;
    line-height: 1.6;
  }

  .empower-visual {
    height: auto;
    display: flex;
    justify-content: center;
  }

  .empower-image {
    max-height: 360px;
    width: auto;
  }

  .empower-divider {
    margin: 24px 0;
  }
}
@media (max-width: 480px) {

  .empower-section {
    padding: 32px 16px;
  }

  .empower-title {
    font-size: 26px;
  }

  .empower-text {
    gap: 10px;
  }

  .empower-item h4 {
    font-size: 17px;
    margin-top : -10px
  }

  .empower-item p {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .empower-image {
    max-height: 310px;
  }

  .empower-divider {
    margin: 10px 0 30px;
  }
}
@media (max-width: 768px) {

  .problem-section {
    padding: 60px 20px;
  }

  .problem-heading {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .problem-outer {
    padding: 28px;
  }

  .problem-inner {
    flex-direction: column;
    gap: 40px;
    padding: 32px;
  }

  .problem-left {
    width: 100%;
  }

  /* Accordion */
  .accordion-header {
    font-size: 20px;
  }

  .accordion-content {
    margin-top: 16px;
  }

  /* Image */
  .problem-right {
    width: 100%;
    justify-content: center;
  }

  .image-box {
    max-width: 360px;
    margin: 0 auto;
    justify-content: center;
  }

  .image-box img {
    max-height: 380px;
  }
}
@media (max-width: 480px) {

  .problem-section {
    padding: 1px 16px 16px;
  }

  problem-divider : {
    width: 10px;
    margin : 2px auto 12px
  }

  .problem-pill {
    font-size: 13px;
    padding: 6px 14px;
  }

  .problem-heading {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 28px;
  }

  .problem-outer {
    padding: 20px;
  }

  .problem-inner {
    padding: 24px;
    gap: 32px;
  }

  /* Accordion */
  .accordion-header {
    font-size: 18px;
    padding: 6px 0;
  }

  .accordion-content ul {
    padding-left: 16px;
  }

  .accordion-content li {
    font-size: 14px;
    line-height: 1.6;
  }

  .tag {
    font-size: 13px;
    padding: 4px 12px;
  }

  /* Image */
  .image-box {
    max-width: 280px;
    border-radius: 16px;
  }

  .image-box img {
    max-height: 300px;
  }
}
@media (max-width: 768px) {

  .about-people {
    padding: 64px 20px;
  }

  .people-heading {
    font-size: 32px;
  }

  .people-copy {
    margin-bottom: 40px;
  }

  .people-slider-wrapper {
    max-width: 100%;
  }

 .people-slider-viewport {
  overflow-x: auto;
  scrollbar-width: none;       
  -ms-overflow-style: none;    
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-left: 0;
  scroll-behavior: smooth;     
}

/* Hide scrollbar (WebKit) */
.people-slider-viewport::-webkit-scrollbar {
  display: none;
 }
  .people-slider-track {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
   
  }

  .people-card {
  flex: 0 0 70vw;
  height: 380px;
  scroll-snap-align: start;
  }

.people-card:first-child {
  margin-left: 8px;
}
  .people-card img {
    height: 280px;
  }

  /* Arrows inside container */
  .people-nav.prev {
    left: 0;
  }

  .people-nav.next {
    right: 0;
  }

  .people-progress {
    width: 240px;
    margin-top: 32px;
  }
}
@media (max-width: 480px) {

  .about-people {
    padding: 48px 16px;
  }

  .people-pill {
    font-size: 16px;
  }

  .people-heading {
    font-size: 26px;
  }

  .people-copy p {
    font-size: 14px;
  }

  /* Full swipe carousel */
  .people-slider-wrapper {
    overflow: hidden;
  }

 .people-slider-wrapper {
  overflow: hidden;
}

.people-slider-viewport {
  overflow-x: auto;
  scrollbar-width: none;        
  -ms-overflow-style: none;     
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  padding-left: 0;
  scroll-behavior: smooth;     
}

/* Hide scrollbar (WebKit) */
.people-slider-viewport::-webkit-scrollbar {
  display: none;
}

.people-slider-track {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}

.people-card {
  flex: 0 0 70vw;
  height: 340px;
  scroll-snap-align: start;
}

.people-card:first-child {
  margin-left: 16px;
}

  .people-card img {
    height: 270px;
  }

  /* Hide arrows on mobile */
  .people-nav {
    display: none;
  }

  /* Progress bar */
  .people-progress {
   display: none;
  }
}

/* ======================================================
   ABOUT – NEWS SECTION (RESPONSIVE)
   Breakpoints: 768px (tablet), 480px (mobile)
====================================================== */

/* =========================
   TABLET (≤ 768px)
========================= */
@media (max-width: 768px) {

  .about-news {
    padding: 60px 0;
  }

  .about-news-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  /* Left content */
  .about-news-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
  }

  .news-nav {
    justify-content: center;
  }

  /* Slider wrapper */
  .about-news-right {
    overflow: hidden;
  }

  .news-slider-wrapper {
    overflow: hidden;
  }

  /* Slider track */
  .news-slider {
    gap: 20px;
    padding-left: 10vw;
    padding-right: 10vw;
    scroll-behavior: smooth; 
  }

  /* Cards */
  .news-card {
    width: 300px;
    min-width: 300px;
    height: 560px;
    padding: 14px;
  }

 .news-card-image{
   border: 1px solid #ddd;
  border-radius: 16px;
  height: 250px;
  overflow: hidden;       
  margin-bottom: 16px;    
  }

.news-card img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block; 
}

  .news-card h3 {
    font-size: 17px;
    min-height: 56px;
  }

  .news-card p {
    font-size: 14px;
    min-height: 88px;
  }
}


/* =========================
   MOBILE (≤ 480px)
========================= */
@media (max-width: 480px) {

  .about-news {
    padding: 20px 0;
  }

  .about-news-container {
    padding: 0 16px;
  }

  /* Heading */
  .about-news-left h2 {
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
  }

  /* Hide arrows on mobile */
  .news-nav {
    display: none;
  }

  /* Slider */
  .news-slider {
    gap: 16px;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  /* Cards */
  .news-card {
    width: 78vw;
    min-width: 78vw;
    height: 560px;
    padding: 12px;
  }

  .news-card-image {
   border: 1px solid #ddd;
   border-radius: 16px;
   height: 240px;
   width : 280px;
   overflow: hidden;       
   margin-bottom: 16px;  
  }  

  .news-card img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: contain;
    display: block;         
  }

  .news-card h3 {
    font-size: 16px;
    min-height: 48px;
  }

  .news-card p {
    font-size: 14px;
    min-height: 72px;
  }

  .about-news-left {
   text-align: center; 
  }

  .view-btn {
    display : flex;
    justify-content : center;
    align-items : center;
  }
  /* Buttons */
  .news-card a.btn-outline {
    display: block;
   width: fit-content;
   margin: 0 auto;
  }
}

/* Enable native swipe on mobile */
@media (max-width: 768px) {
  .news-slider-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .news-slider {
    display: flex;
    scroll-snap-type: x mandatory;
    transform: none !important;
  }

  .news-card {
    scroll-snap-align: start;
  }
}
