/* ======================================
   VISIT SERRIS - MAIN CSS (COMPACT)
====================================== */

:root{
  --vs-blue: #1f4e82;
  --vs-blue-dark: #0d3f70;
  --vs-blue-soft: #2da7f8;
  --vs-blue-light: #f4f8fc;
  --vs-text: #1f2937;
  --vs-text-soft: #5b6776;
  --vs-border: #e7edf4;
  --vs-white: #ffffff;
  --vs-shadow-sm: 0 6px 16px rgba(18, 51, 84, 0.07);
  --vs-shadow-md: 0 10px 26px rgba(18, 51, 84, 0.09);
  --vs-shadow-lg: 0 18px 42px rgba(18, 51, 84, 0.12);
  --vs-radius-sm: 14px;
  --vs-radius-md: 18px;
  --vs-radius-lg: 24px;
  --vs-container: 1200px;
}

/* ======================================
   BASE
====================================== */

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--vs-text);
  background: #fff;
  line-height: 1.55;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

main{
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.homepage{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
}

.container{
  width: min(var(--vs-container), calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
}

/* ======================================
   TYPO
====================================== */

h1, h2, h3, h4, h5, h6{
  margin-top: 0;
  line-height: 1.08;
  color: #12263f;
}

p{
  margin-top: 0;
}

.section-title{
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin-bottom: 12px;
}

.section-lead{
  font-size: 1rem;
  color: var(--vs-text-soft);
  max-width: 720px;
}

/* ======================================
   HERO HOME
====================================== */

.vs-hero{
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f2740;
}

.vs-hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vs-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 26, 43, 0.78) 0%, rgba(10, 26, 43, 0.42) 48%, rgba(10, 26, 43, 0.22) 100%);
}

.vs-hero-content{
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
  padding: 48px 0;
}

.vs-hero h1{
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
  max-width: 820px;
  margin-bottom: 16px;
}

.vs-hero p{
  font-size: 1.02rem;
  max-width: 660px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.92);
}

.vs-hero-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  transition: .2s;
}

.hero-pill:hover{
  background: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

/* ======================================
   INTRO
====================================== */

.vs-intro-magic{
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding: 44px 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.vs-intro-magic .container{
  max-width: 860px;
}

.vs-intro-magic h2{
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 12px;
}

.vs-intro-lead{
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--vs-blue);
  margin-bottom: 10px;
}

.vs-intro-text{
  color: var(--vs-text-soft);
  font-size: .98rem;
}

/* ======================================
   DISCOVER GRID
====================================== */

.vs-discover{
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding: 18px 0 42px;
}

.vs-discover-grid{
  width: min(var(--vs-container), calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vs-discover-title{
  grid-column: span 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 4px;
}

.vs-discover-title h2{
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin: 0;
}

.vs-discover-title a{
  color: var(--vs-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.vs-discover-card{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--vs-radius-md);
  aspect-ratio: 16 / 10;
  min-height: 180px;
  max-width: 100%;
  text-decoration: none;
  box-shadow: var(--vs-shadow-md);
}

.vs-discover-card img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.vs-discover-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 35, 0.05) 0%, rgba(7, 21, 35, 0.72) 100%);
}

.vs-discover-card span{
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: white;
  font-size: 1.08rem;
  font-weight: 700;
}

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

/* ======================================
   SPONSORED BLOCK
====================================== */

.vs-sponsored-home{
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding: 0 0 54px;
}

.vs-sponsored-home-card{
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  background: #fff;
  border-radius: var(--vs-radius-lg);
  box-shadow: var(--vs-shadow-lg);
  text-decoration: none;
  color: inherit;
}

.vs-sponsored-home-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.vs-sponsored-home-content{
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vs-sponsored-label{
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf6ff;
  color: var(--vs-blue);
  font-weight: 700;
  font-size: .84rem;
}

.vs-sponsored-home-content h2{
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 12px;
}

.vs-sponsored-home-content p{
  color: var(--vs-text-soft);
  font-size: .98rem;
  margin-bottom: 18px;
}

.vs-sponsored-btn{
  display: inline-flex;
  align-self: flex-start;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--vs-blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

/* ======================================
   PARTNERS / CARDS
====================================== */

.vs-home-partners{
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding: 0 0 46px;
}

.vs-home-partners-head{
  margin-bottom: 20px;
}

.vs-home-partners-kicker{
  margin-bottom: 6px;
  color: var(--vs-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}

.vs-home-partners-head h2{
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 8px;
}

.vs-home-partners-head p{
  color: var(--vs-text-soft);
  max-width: 720px;
  font-size: .98rem;
}

.vs-home-partners-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.vs-home-partner-card{
  background: #fff;
  border-radius: var(--vs-radius-md);
  overflow: hidden;
  border: 1px solid var(--vs-border);
  box-shadow: var(--vs-shadow-sm);
  max-width: 100%;
}

.vs-home-partner-image{
  display: block;
  text-decoration: none;
}

.vs-home-partner-image img{
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vs-home-partner-body{
  padding: 18px;
}

.vs-home-partner-badges{
  margin-bottom: 12px;
}

.vs-partner-badge{
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--vs-blue);
  font-size: .8rem;
  font-weight: 700;
}

.vs-home-partner-card h3{
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.vs-home-partner-card p{
  color: var(--vs-text-soft);
  margin-bottom: 14px;
  font-size: .96rem;
}

.vs-home-partner-link{
  color: var(--vs-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

/* ======================================
   EVENTS
====================================== */

.vs-events-section{
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding: 0 0 46px;
}

.vs-events-wrapper{
  width: min(var(--vs-container), calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.vs-events-intro{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  min-height: 100%;
  padding: 34px 28px;
  border-radius: 24px;
  background: #16508f;
  color: #fff;
}

.vs-events-intro h2{
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: .96;
  margin: 0 0 6px;
  color: #ffffff;
}

.vs-events-intro a{
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: .98rem;
}

.vs-events-container{
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.vs-events-slider{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0 8px 8px;
  min-width: 0;
  max-width: 100%;
  scrollbar-width: none;
}

.vs-events-slider::-webkit-scrollbar{
  display: none;
}

.vs-event-card{
  background: #fff;
  border-radius: var(--vs-radius-md);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--vs-border);
  box-shadow: var(--vs-shadow-sm);
  scroll-snap-align: start;
  min-height: 100%;
  max-width: 100%;
}

.vs-event-image{
  position: relative;
}

.vs-event-image img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.vs-event-date{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #16508f;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

.vs-event-date span{
  font-size: .8rem;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  color: #fff;
}

.vs-event-date strong{
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 3px;
  color: #fff;
}

.vs-event-content{
  padding: 18px;
  min-height: 170px;
}

.vs-event-content h3{
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.vs-event-content p{
  margin: 0;
  color: var(--vs-text-soft);
  font-size: .95rem;
}

.vs-events-arrow{
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--vs-shadow-sm);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
}

.vs-events-arrow.left{
  left: 4px;
}

.vs-events-arrow.right{
  right: 4px;
}

/* ======================================
   BLOG / POPULAR
====================================== */

.vs-popular{
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding: 0 0 46px;
}

.vs-popular-wrapper{
  width: min(var(--vs-container), calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: start;
}

.vs-popular-intro{
  padding-top: 8px;
}

.vs-popular-intro h2{
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: .96;
  margin: 0 0 14px;
}

.vs-popular-intro-link{
  color: var(--vs-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.vs-popular-intro-link:hover{
  text-decoration: underline;
}

.vs-popular-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.vs-popular-card{
  background: #fff;
  border-radius: var(--vs-radius-md);
  overflow: hidden;
  border: 1px solid var(--vs-border);
  box-shadow: var(--vs-shadow-sm);
  max-width: 100%;
}

.vs-popular-image{
  display: block;
  text-decoration: none;
}

.vs-popular-image img{
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.vs-popular-content{
  padding: 14px 16px 16px;
}

.vs-popular-category{
  display: inline-block;
  margin-bottom: 8px;
  color: var(--vs-blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.vs-popular-content h3{
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.vs-popular-content h3 a{
  color: #0b2f57;
  text-decoration: none;
}

.vs-popular-content h3 a:hover{
  text-decoration: underline;
}

.vs-popular-reading{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--vs-blue);
  font-size: .92rem;
  font-weight: 700;
}

.vs-popular-excerpt{
  margin: 0;
  color: var(--vs-text-soft);
  font-size: .92rem;
  line-height: 1.4;
}

.vs-popular-content h3,
.vs-popular-content h3 a{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vs-popular-excerpt{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vs-destination-intro{
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding: 0 0 46px;
}

.vs-destination-container{
  width: min(860px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.vs-destination-container p{
  font-size: 1.02rem;
  color: var(--vs-text-soft);
}

/* ======================================
   FAQ
====================================== */

.vs-faq{
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding: 48px 0;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

.vs-faq-container{
  width: min(1200px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.vs-faq-head{
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

.vs-faq-kicker{
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #1f6fb2;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.vs-faq-head h2{
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1;
  color: #0f2f52;
}

.vs-faq-lead{
  margin: 0;
  color: #5c6878;
  font-size: 1rem;
  line-height: 1.65;
}

.vs-faq-grid{
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.vs-faq-item{
  background: #fff;
  border: 1px solid #dfeaf4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 53, 89, 0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  max-width: 100%;
}

.vs-faq-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 53, 89, 0.09);
  border-color: #cfe0ef;
}

.vs-faq-item summary{
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 22px 62px 22px 22px;
  font-size: 1rem;
  font-weight: 800;
  color: #16314f;
}

.vs-faq-item summary::-webkit-details-marker{
  display: none;
}

.vs-faq-item summary span{
  display: block;
  line-height: 1.4;
}

.vs-faq-item summary::after{
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf5fc;
  color: #1f6fb2;
  font-size: 1.2rem;
  font-weight: 700;
  transition: .2s ease;
}

.vs-faq-item[open] summary::after{
  content: "–";
  background: #1f6fb2;
  color: #fff;
}

.vs-faq-item[open]{
  border-color: #cddfec;
  box-shadow: 0 14px 28px rgba(16, 53, 89, 0.09);
}

.vs-faq-answer{
  padding: 0 22px 20px;
}

.vs-faq-answer p{
  margin: 0;
  color: #5b6777;
  font-size: .96rem;
  line-height: 1.7;
}

/* ======================================
   PRO CTA GLOBAL
====================================== */

.vs-pro-cta{
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding: 0 0 52px;
}

.vs-pro-cta-box{
  border-radius: 22px;
  background: linear-gradient(135deg, #123b67 0%, #1f6fb2 100%);
  color: #fff;
  padding: 24px;
  box-shadow: var(--vs-shadow-lg);
}

.vs-pro-cta-kicker{
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: 6px;
  opacity: .92;
}

.vs-pro-cta-box h2{
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 12px;
}

.vs-pro-cta-box p{
  max-width: 700px;
  color: rgba(255,255,255,0.90);
  margin-bottom: 18px;
  font-size: .98rem;
}

.vs-pro-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--vs-blue-dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 1180px){
  .vs-home-partners-grid,
  .vs-popular-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-discover-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-discover-title{
    grid-column: span 2;
  }

  .vs-sponsored-home-card{
    grid-template-columns: 1fr;
  }

  .vs-popular-wrapper{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 980px){
  .container,
  .vs-events-wrapper,
  .vs-popular-wrapper,
  .vs-discover-grid,
  .vs-destination-container,
  .vs-faq-container{
    width: calc(100% - 24px);
  }

  .vs-hero{
    min-height: 56vh;
  }

  .vs-hero-content{
    width: calc(100% - 24px);
    padding: 52px 0;
  }

  .vs-home-partners-grid,
  .vs-popular-grid,
  .vs-faq-grid{
    grid-template-columns: 1fr;
  }

  .vs-discover-grid{
    grid-template-columns: 1fr 1fr;
  }

  .vs-discover-title{
    grid-column: span 2;
    align-items: start;
    flex-direction: column;
  }

  .vs-events-wrapper{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vs-events-intro{
    padding: 24px 20px;
    border-radius: 20px;
  }

  .vs-events-intro h2{
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .vs-events-slider{
    grid-auto-columns: minmax(230px, 82vw);
    padding-inline: 0;
  }

  .vs-events-arrow{
    display: none;
  }

  .vs-faq{
    padding: 52px 0;
  }

  .vs-faq-head{
    text-align: left;
    margin-bottom: 20px;
  }
}

@media (max-width: 820px){
  .vs-popular-grid,
  .vs-home-partners-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .container,
  .vs-events-wrapper,
  .vs-popular-wrapper,
  .vs-discover-grid,
  .vs-destination-container,
  .vs-faq-container{
    width: calc(100% - 20px);
  }

  .vs-hero{
    min-height: 50vh;
  }

  .vs-hero-content{
    width: calc(100% - 20px);
    padding: 42px 0;
  }

  .vs-hero-buttons{
    gap: 8px;
  }

  .hero-pill{
    width: 100%;
  }

  .vs-discover-grid{
    grid-template-columns: 1fr;
  }

  .vs-discover-title{
    grid-column: span 1;
  }

  .vs-discover-card{
    aspect-ratio: 4 / 3;
    min-height: 170px;
  }

  .vs-sponsored-home-content,
  .vs-pro-cta-box{
    padding: 22px;
  }

  .vs-home-partner-body,
  .vs-event-content,
  .vs-popular-content{
    padding: 16px;
  }

  .vs-home-partner-image img{
    height: 180px;
  }

  .vs-popular-image img{
    height: 180px;
  }

  .vs-event-image img{
    height: 170px;
  }
}


/* ======================================
   BLOG / POPULAR
====================================== */

.vs-popular{
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  padding: 0 0 46px;
}

.vs-popular-wrapper{
  width: min(var(--vs-container), calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: stretch;
}

.vs-popular-intro-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  min-height: 100%;
  padding: 34px 28px;
  border-radius: 24px;
  background: #16508f;
  color: #fff;
}

.vs-popular-intro-box h2{
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: .96;
  margin: 0 0 6px;
  color: #fff;
}

.vs-popular-intro-link{
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: .98rem;
}

.vs-popular-intro-link:hover{
  text-decoration: underline;
}

.vs-popular-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.vs-popular-card{
  background: #fff;
  border-radius: var(--vs-radius-md);
  overflow: hidden;
  border: 1px solid var(--vs-border);
  box-shadow: var(--vs-shadow-sm);
  max-width: 100%;
}

.vs-popular-image{
  display: block;
  text-decoration: none;
}

.vs-popular-image img{
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.vs-popular-content{
  padding: 14px 16px 16px;
}

.vs-popular-category{
  display: inline-block;
  margin-bottom: 8px;
  color: var(--vs-blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.vs-popular-content h3{
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.vs-popular-content h3 a{
  color: #0b2f57;
  text-decoration: none;
}

.vs-popular-content h3 a:hover{
  text-decoration: underline;
}

.vs-popular-reading{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: var(--vs-blue);
  font-size: .92rem;
  font-weight: 700;
}

.vs-popular-excerpt{
  margin: 0;
  color: var(--vs-text-soft);
  font-size: .92rem;
  line-height: 1.4;
}

.vs-popular-content h3,
.vs-popular-content h3 a{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vs-popular-excerpt{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1180px){
  .vs-popular-wrapper{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vs-popular-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-popular-intro-box{
    padding: 24px 20px;
    border-radius: 20px;
  }

  .vs-popular-intro-box h2{
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }
}

@media (max-width: 980px){
  .vs-popular-wrapper{
    width: calc(100% - 24px);
  }
}

@media (max-width: 820px){
  .vs-popular-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .vs-popular-wrapper{
    width: calc(100% - 20px);
  }

  .vs-popular-content{
    padding: 16px;
  }

  .vs-popular-image img{
    height: 180px;
  }
}