/* =========================================================
   COURSE PAGE TEMPLATE — Modernized Shared Stylesheet
   Loaded by course-bpharm.php, course-dpharm.php, course-mpharm.php
   via $pageExtraCss = 'css/course-page.css'.
   ========================================================= */

/* =========================================================
   HERO (IMAGE & CONTENT)
   ========================================================= */
.course-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #072a1a 0%, #0d4c2f 55%, #12603b 100%);
}
.course-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.38;
  filter: saturate(1.1) brightness(0.9);
}
.course-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.course-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    0deg,
    rgba(7, 34, 21, 0.96) 0%,
    rgba(7, 34, 21, 0.72) 45%,
    rgba(10, 61, 38, 0.4) 100%
  );
}
.course-hero-content {
  position: relative;
  z-index: 3;
  padding: 64px 24px 56px;
  color: #fff;
  width: 100%;
}
.course-hero-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
}
.course-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.course-hero-breadcrumb a:hover {
  color: var(--gold-500);
}
.course-hero-breadcrumb svg {
  width: 11px;
  height: 11px;
  opacity: 0.6;
}
.course-hero-breadcrumb .current {
  color: var(--gold-500);
}

.course-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.course-hero-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold-500);
}

.course-hero-content h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 800;
  max-width: 820px;
  line-height: 1.15;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.course-hero-content h1 span {
  font-weight: 600;
  color: var(--gold-500);
  font-size: 0.78em;
}

.course-hero-sub {
  margin: 16px 0 0;
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.course-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.course-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 7px 16px;
  backdrop-filter: blur(4px);
}
.course-hero-badges svg {
  width: 15px;
  height: 15px;
  color: var(--gold-500);
}

.course-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--green-900);
  border-color: #fff;
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
  .course-hero {
    min-height: 440px;
  }
  .course-hero-content {
    padding: 48px 20px 40px;
  }
}

/* =========================================================
   SIDEBAR + MAIN CONTENT LAYOUT
   ========================================================= */
.course-body {
  padding: 0 0 96px;
  background: #fff;
}
.course-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 52px;
  align-items: start;
}

/* ---- Sidebar shell ---- */
.course-sidebar {
  position: sticky;
  top: 96px;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 5;
}
.side-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: 0 10px 30px -12px rgba(10, 61, 38, 0.1);
  border: 1px solid var(--line);
}
.side-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 18px;
}
.side-card h3::before {
  content: '';
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold-500);
  flex-shrink: 0;
}

/* ---- Quick Facts ---- */
.fact-list {
  display: flex;
  flex-direction: column;
}
.fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px dashed #e6e9e6;
}
.fact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.fact-list li:first-child {
  padding-top: 0;
}
.fact-list .fact-icon-chip {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.fact-list svg {
  width: 18px;
  height: 18px;
}
.fact-list span {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--ink);
  padding-top: 2px;
  line-height: 1.35;
}
.fact-list strong {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 3px;
}

/* ---- On This Page (scrollspy) ---- */
.jump-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.jump-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-left: 2.5px solid transparent;
  transition: all 0.2s ease;
}
.jump-nav a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccd4cf;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.jump-nav a:hover {
  background: #f4faf6;
  color: var(--green-800);
}
.jump-nav a.is-active {
  background: var(--green-100);
  color: var(--green-800);
  border-left-color: var(--gold-500);
  font-weight: 700;
  padding-left: 18px;
}
.jump-nav a.is-active::before {
  background: var(--gold-500);
  transform: scale(1.3);
}

/* ---- CTA card in sidebar ---- */
.side-card--cta {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 100%);
  border: none;
  overflow: hidden;
  color: #fff;
}
.side-card--cta::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 168, 0, 0.22), transparent 70%);
  pointer-events: none;
}
.side-card--cta h3 {
  color: var(--gold-500);
}
.side-card--cta h3::before {
  background: var(--gold-500);
}
.side-card--cta p {
  position: relative;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 18px;
}
.btn-block {
  width: 100%;
  margin-bottom: 10px;
  justify-content: center;
}
.btn-block:last-of-type {
  margin-bottom: 0;
}
.side-contact {
  position: relative;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}
.side-contact svg {
  color: var(--gold-500);
  flex-shrink: 0;
}
.side-contact a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .course-layout {
    grid-template-columns: 1fr;
  }
  .course-sidebar {
    position: static;
    margin-top: 36px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
  .side-card {
    flex: 1 1 280px;
  }
}
@media (max-width: 640px) {
  .course-sidebar {
    flex-direction: column;
    margin-top: 32px;
  }
}

/* =========================================================
   MAIN CONTENT SECTIONS
   ========================================================= */
.course-main {
  min-width: 0;
  padding-top: 52px;
}
.course-section {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid #edf1ee;
  scroll-margin-top: 96px;
}
.course-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.course-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 12px;
}
.course-kicker::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold-500);
}

.course-section h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: var(--green-900);
  line-height: 1.25;
  max-width: 720px;
  margin-bottom: 18px;
}
.course-section p {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 800px;
}
.course-section p:last-of-type {
  margin-bottom: 0;
}

/* Modern Callout Note */
.course-note {
  background: #f6f9f7;
  border-left: 3px solid var(--gold-500);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--green-900);
  margin-top: 20px;
}

/* =========================================================
   FEATURE CARDS GRID (Learning, Infrastructure, Labs)
   ========================================================= */
.course-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.course-feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 6px 20px -8px rgba(10, 61, 38, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.course-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-600);
  box-shadow: 0 14px 28px -10px rgba(10, 61, 38, 0.16);
}
.course-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.course-feature-icon svg {
  width: 22px;
  height: 22px;
}
.course-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 8px;
}
.course-feature-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 680px) {
  .course-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SEMESTER MILESTONE ROADMAP
   ========================================================= */
.semester-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.semester-card {
  background: #f7faf8;
  border: 1px solid #e1e8e3;
  border-radius: var(--radius-md);
  padding: 20px 18px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.semester-card:hover {
  transform: translateY(-2px);
  border-color: var(--green-700);
  background: #fff;
}
.semester-card-year {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 8px;
  display: block;
}
.semester-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}
.semester-card-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.semester-dots-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.semester-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--green-100);
  color: var(--green-800);
}
.semester-dot.is-filled {
  background: var(--green-800);
  color: #fff;
}

/* =========================================================
   ELIGIBILITY & INTAKE PANEL
   ========================================================= */
.eligibility-panel {
  margin-top: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px 32px;
}
.eligibility-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 24px 0;
}
.eligibility-divider {
  height: 1px;
  background: var(--line);
}
.eligibility-ring {
  position: relative;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
}
.ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-track {
  fill: none;
  stroke: var(--green-100);
  stroke-width: 10;
}
.ring-fill {
  fill: none;
  stroke: var(--gold-500);
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}
.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--green-800);
  line-height: 1;
}
.ring-caption {
  margin-top: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eligibility-count {
  position: relative;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  box-shadow: 0 6px 16px -4px rgba(10, 61, 38, 0.1);
}
.eligibility-count svg {
  width: 22px;
  height: 22px;
}
.eligibility-count-value {
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green-800);
  line-height: 1;
}
.eligibility-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 6px;
}
.eligibility-detail p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink);
}
.eligibility-detail strong {
  color: var(--green-900);
}

@media (max-width: 640px) {
  .eligibility-panel {
    padding: 6px 20px;
  }
  .eligibility-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* =========================================================
   PILL TAGS & CHECK LIST
   ========================================================= */
.pill-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.pill-tag-list li {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 999px;
  padding: 8px 18px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pill-tag-list li:hover {
  background: var(--green-800);
  color: #fff;
  transform: translateY(-2px);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-top: 14px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312603b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
@media (max-width: 640px) {
  .check-list {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   M.PHARM 7 SPECIALISATIONS GRID
   ========================================================= */
.mspec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.mspec-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px 22px 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.mspec-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-500), var(--green-700));
}
.mspec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -14px rgba(10, 61, 38, 0.25);
  border-color: var(--green-600);
}
.mspec-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.mspec-icon svg {
  width: 22px;
  height: 22px;
}
.mspec-card h4 {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.38;
  color: var(--green-900);
  margin: 0 0 10px;
  min-height: 2.8em;
}
.mspec-desc {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
  flex-grow: 1;
}
.mspec-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.mspec-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 5px 12px;
  border-radius: 999px;
}
.mspec-meta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.mspec-duration {
  background: var(--green-100);
  color: var(--green-700);
}
.mspec-seats {
  background: rgba(240, 168, 0, 0.15);
  color: #8c5b00;
}

@media (max-width: 640px) {
  .mspec-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   COURSE-SPECIFIC FAQ ACCORDION
   ========================================================= */
.course-faq-wrap {
  margin-top: 24px;
}
.course-faq-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.course-faq-card:hover {
  border-color: rgba(18, 96, 59, 0.4);
}
.course-faq-card.is-open {
  border-color: var(--green-700);
  box-shadow: 0 8px 22px -8px rgba(10, 61, 38, 0.15);
}
.course-faq-trigger {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}
.course-faq-q {
  font-family: 'Poppins', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.35;
}
.course-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.course-faq-card.is-open .course-faq-icon {
  transform: rotate(180deg);
  background: var(--green-800);
  color: #fff;
}
.course-faq-body {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
  border-top: 1px dashed #edf1ee;
  padding-top: 14px;
}
.course-faq-card.is-open .course-faq-body {
  display: block;
  animation: faqFadeIn 0.3s ease;
}

/* =========================================================
   OTHER PROGRAMS CROSS-NAVIGATION STRIP
   ========================================================= */
.other-progs-strip {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 64px 0 80px;
}
.other-progs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.other-prog-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 8px 24px -10px rgba(10, 61, 38, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.other-prog-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-600);
  box-shadow: 0 16px 32px -12px rgba(10, 61, 38, 0.18);
}
.other-prog-meta h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 4px;
}
.other-prog-meta p {
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin: 0;
}
.other-prog-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.other-prog-card:hover .other-prog-arrow {
  background: var(--green-800);
  color: #fff;
  transform: translateX(4px);
}

@media (max-width: 680px) {
  .other-progs-grid {
    grid-template-columns: 1fr;
  }
}
