/* ============================
   PAGE TITLE BAR
============================ */

.vm-page-title {
  background-color: var(--vm-purple-footer);
  padding: 96px 0;
  text-align: center;
}

.vm-page-title__heading {
  margin: 0;
  font-family: var(--vm-font);
  font-weight: var(--vm-fw-500);
  line-height: 1;
  letter-spacing: var(--vm-ls--174);
}

/* ABOUT (blue) */
.vm-page-title__highlight {
  color: var(--vm-blue-accent);
  margin-right: 8px;
}

/* Visa Matters (white) */
.vm-page-title__main {
  color: var(--vm-white);
}

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

/* Desktop */
@media (min-width: 1200px) {
  .vm-page-title__heading {
    font-size: var(--vm-fs-58);
    line-height: var(--vm-lh-57);
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .vm-page-title__heading {
    font-size: 48px;
    line-height: 1.1;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .vm-page-title {
    padding: 64px 0;
  }

  .vm-page-title__heading {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: var(--vm-ls--1);
  }
}




.vm-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.center {
  text-align: center;
}

/* HEADER */
.vm-title {
  font: normal normal 600 46px/52px DM Sans;
  letter-spacing: -1.38px;
  color: #28264E;
  margin-top: 152px;
}

.vm-desc {
  max-width: 900px;
  margin: 35px auto 110px;
  font: normal normal normal 18px/28px DM Sans;
  color: #3E3E3E;
}

/* CONTENT BG */
.vm-content-area {
  background: rgba(15,15,15,0.05);
  padding: 140px 20px;
}

/* TOGGLE */
.vm-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 145px;
}

.vm-toggle-inner {
  background: #fff;
  border-radius: 100px;
  padding: 20px;
  display: flex;
  gap: 10px;
}

.vm-tab {
  border: none;
  padding: 18px 40px;
  border-radius: 100px;
  font: normal normal 600 20px/24px DM Sans;
  color: #4DB1D8;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.vm-tab.active {
  background: #28264E;
  color: #fff;
}

/* TAB CONTENT */
.vm-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.vm-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* SHORTS GRID */
.vm-shorts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
	align-items: start;
}

.vm-short-card {
  text-decoration: none;
  color: inherit;
}

/* TITLE ROW */
.vm-short-title {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

/* TITLE TEXT */
.vm-short-title-text {
  font: normal normal 700 16px/21px DM Sans;
  color: #28264E;
}

/* DOTS CONTAINER */
.vm-short-dots {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
  margin-top: 4px; /* slight alignment tweak */
}

/* EACH DOT */
.vm-short-dots i {
  width: 4px;
  height: 4px;
  background: #1a1a1a;
  border-radius: 50%;
  display: block;
  opacity: 0.8;
	margin-top: 3px;
}

.vm-short-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
	border-radius:6px;
}

.vm-short-card h4 {
  margin-top: 18px;
  font: normal normal 600 16px/21px DM Sans;
  color: #28264E;
}

.vm-short-card span {
  display: block;
  margin-top: 15px;
  font: normal normal 600 16px/21px DM Sans;
  color: #28264E;
}

.vm-shorts-grid .counter{
	font: normal normal normal 16px/21px DM Sans !important;
	color: #3E3E3E !important; 
}

/* VIDEOS GRID */
.vm-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.vm-video-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.vm-spacer {
  flex: 1;
}
.vm-video-thumb {
  position: relative;
}
.vm-video-thumb img {
  width: 100%;
  border-radius: 6px;
  height: 300px;
  object-fit: cover;
}
.vm-play {
  width: 86px;
  height: 86px;
  background: url('../images/play-button.png') center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vm-video-card h3 {
  margin-top: 37px;
  font: normal normal 600 24px/28px DM Sans;
  color: #28264E;
}
.vm-video-card p {
  margin-top: 15px;
  font: normal normal normal 16px/20px DM Sans;
  color: #3E3E3E;
}
.vm-video-card .btn {
  margin-top: auto;
  align-self: flex-start; /* remove if you want full-width button */
}

/* SUBSCRIBE */
.vm-subscribe {
  margin: 120px auto;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 850px;
  text-decoration: none;
}

.vm-subscribe img,
.vm-yt-icon {
  width: 86px;
  flex-shrink: 0;
}

.vm-subscribe h3 {
  font: normal normal 600 32px/37px DM Sans;
  color: #28264E;
}

/* LOAD MORE */
.vm-load-more-container {
  text-align: center;
  margin-top: 60px;
}

.vm-btn-tertiary {
  color: #50bae2;
  text-decoration-line: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .vm-shorts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vm-video-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .vm-shorts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vm-title {
    font-size: 32px;
    line-height: 38px;
  }

  .vm-subscribe {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .vm-shorts-grid {
    grid-template-columns: 1fr;
  }
}
