@charset "UTF-8";
.animation-circle {
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.bounce-content {
  -webkit-animation-name: bounce;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.single-body img {
  width: 100% !important;
  height: auto !important;
  border-radius: 30px;
  box-shadow: 0 0 6px rgb(238, 238, 238);
  filter: brightness(1.2);
}

/* ═══════════════════════ VARIABLES ═══════════════════════ */
:root {
  --text-dark: #1A1A1A;
  --text-gray: #6b7280;
  --border-color: #e5e7eb;
  --btn-color: #dd2026;
  /* Burgundy color from the design */
  /* Colors matched to the GMRIT brand */
  --gmrit-blue: #112e51;
  --gmrit-orange: #dd2026;
  --gmrit-yellow: #f4a024;
  --nav-text: rgb(0, 57, 116);
  --gmrit-orange: #dd2026;
  --footer-bg: #0e1a3a;
  --footer-bottom-bg: #070e1c;
  --footer-text: #d1d5db;
  --bg-color: #f8fafc;
  --surface-color: #ffffff;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --accent-color: #2d395f;
  /* Academic Blue */
  --accent-light: rgba(0, 74, 173, 0.08);
  /* Soft blue for active states */
  --card-burgundy: #dd2026;
  /* Match the Read More button color from image */
  --border-color: #e2e8f0;
  --border-radius: 16px;
  --main-heading-d: 42px;
  --main-heading-m: 24px;
  --sub-heading-d: 30px;
  --sub-heading-m: 20px;
  --subtle-heaidng-m: 18px;
}

/* ═══════════════════════ BANNER STYLING ═══════════════════════ */
.page-banner {
  /* Adjust the URL below to use a real image from your media library */
  background: linear-gradient(135deg, rgba(37, 64, 132, 0.893) 0%, rgba(70, 114, 186, 0.625) 100%), url("../images/hero2.jpg") center/cover no-repeat;
  padding: 120px 0 100px;
  color: #ffffff;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  max-width: 800px;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}

.banner-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.9;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════ GRID ═══════════════════════ */
.schools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ═══════════════════════ CARD STYLING ═══════════════════════ */
.school-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.school-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* ── IMAGE THUMBNAIL ── */
.card-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.school-card:hover .card-thumb img {
  transform: scale(1.05);
}

/* ── CARD BODY ── */
.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── META INFO ── */
.card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-gray);
}

.meta-item svg {
  color: var(--text-dark);
  /* Darker icon color to match the design */
}

/* ── TITLE ── */
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: var(--btn-color);
}

/* ── EXCERPT ── */
.card-excerpt {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 24px;
  /* Limits text to 2 lines if needed */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── FOOTER & BUTTON ── */
.card-footer {
  margin-top: auto;
}

.btn-read-more {
  display: inline-block;
  padding: 8px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--btn-color);
  background-color: transparent;
  border: 1px solid var(--btn-color);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background-color: var(--btn-color);
  color: #ffffff;
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 992px) {
  .schools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .schools-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .banner-title {
    font-size: 2.5rem;
  }
}
/* ═══════════════════════ PAGINATION ═══════════════════════ */
.custom-pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.custom-pagination ul {
  display: flex;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.custom-pagination li {
  display: inline-block;
}

.custom-pagination a,
.custom-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  font-weight: 500;
  background: #f3f4f6;
  border-radius: 6px;
  color: var(--text-dark);
  transition: 0.3s;
}

.custom-pagination a:hover,
.custom-pagination .current {
  background: var(--btn-color);
  color: #fff;
}

.custom-pagination .prev,
.custom-pagination .next {
  width: auto;
  padding: 0 16px;
}

/* --- Navbar Base --- */
.navbar-custom {
  background-color: #ffffff;
  border-bottom: 4px solid var(--gmrit-yellow);
  /* Yellow Bottom Border */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  /* Sticky Top Properties */
  position: sticky;
  top: 0;
  z-index: 1050;
  /* Smooth transition for the scroll effect */
  transition: border-bottom-color 0.3s ease;
}

/* Class added by JavaScript on scroll */
.navbar-custom.scrolled {
  border-bottom-color: transparent;
}

/* --- Brand / Logo Placeholder --- */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.logo-placeholder {
  font-weight: 900;
  font-size: 32px;
  color: var(--gmrit-blue);
  letter-spacing: -1px;
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.logo-sub {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #333;
}

/* --- Desktop Nav Links --- */
.nav-link {
  color: var(--nav-text) !important;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  align-items: center;
  /* padding: 0.5rem 0.6rem !important; */
  transition: color 0.2s ease;
}

/* Font Awesome Icon Styling */
.nav-link i {
  color: var(--nav-text);
  font-size: 12px;
  width: 18px;
  /* Fixed width for consistent alignment */
  text-align: center;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:hover i {
  color: var(--gmrit-orange) !important;
}

/* --- Mobile Toggler --- */
.navbar-toggler {
  border: 2px solid var(--gmrit-blue) !important;
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817, 46, 81, 1%29' stroke-linecap='round' stroke-miterlimit='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ═══════════════════════ RESPONSIVE DESIGN ═══════════════════════ */
/* Mobile and Tablet Menu (Below 1200px) */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    /* Creates a clean, scrollable card for the mobile menu */
    background-color: #ffffff;
    max-height: 75vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-top: 10px;
    border: 1px solid #f0f0f0;
  }
  .navbar-nav {
    padding: 0;
  }
  .nav-link {
    padding: 0.8rem 1rem !important;
    /* Larger touch targets */
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
  }
  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  .nav-link i {
    font-size: 16px;
    width: 24px;
    margin-right: 8px;
  }
}
/* Small Phones */
@media (max-width: 575.98px) {
  .logo-placeholder {
    font-size: 24px;
    /* Scale down logo text */
  }
  .logo-sub {
    font-size: 9px;
  }
  .navbar-brand img {
    height: 50px !important;
    /* Scale down image logo if used */
  }
}
main {
  flex: 1;
  /* Pushes footer to the bottom */
}

/* ═══════════════════════ FOOTER STYLES ═══════════════════════ */
.site-footer {
  background-color: var(--footer-bg);
  color: white;
  padding-top: 60px;
}

/* Logo Column */
.footer-logo-col {
  text-align: center;
}

.footer-logo-col img {
  max-height: 90px;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-size: 14px;
  line-height: 1.5;
  color: white;
}

/* Footer Headings */
.footer-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

/* The Orange Underline */
.footer-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--gmrit-orange);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gmrit-orange);
}

/* Contact Info */
.footer-contact {
  color: var(--footer-text);
  font-size: 15px;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item i.fa-phone {
  color: #d84b72;
  /* Pinkish color from the image */
}

.contact-item i.fa-envelope {
  color: white;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  /* Transparent light overlay */
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--gmrit-orange);
  transform: translateY(-3px);
}

/* ═══════════════════════ FOOTER BOTTOM ═══════════════════════ */
.footer-bottom {
  background-color: var(--footer-bottom-bg);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 14px;
  color: #9ca3af;
}

.footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

.footer-bottom .divider {
  margin: 0 8px;
  color: #6b7280;
}

@media (max-width: 991px) {
  .footer-col {
    margin-bottom: 40px;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .d-flex {
    justify-content: center !important;
    margin-top: 10px;
  }
}
/* ═══════════════════════ VARIABLES & BASE ═══════════════════════ */
a {
  color: #2d395f;
}

/* ═══════════════════════ LAYOUT & GRID ═══════════════════════ */
.single-post-wrapper {
  padding: 60px 0 80px;
}

.content-col {
  background: var(--surface-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

/* ═══════════════════════ SIDEBAR & TOC ═══════════════════════ */
.sidebar-col {
  position: relative;
}

.sticky-sidebar {
  position: sticky;
  top: 120px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 10px;
}

/* 🔥 Modern Visible Scrollbar for Sidebar 🔥 */
.sticky-sidebar::-webkit-scrollbar {
  width: 6px;
}

.sticky-sidebar::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.sticky-sidebar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.sticky-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 40px;
  padding: 10px 20px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.back-btn:hover {
  background: var(--accent-light);
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/* TOC Box Design */
.toc-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.toc-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

/* TOC Background Hover/Active States */
#desktop-toc-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#desktop-toc-container li {
  margin-bottom: 4px;
  border-radius: 8px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

#desktop-toc-container li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: block;
  line-height: 1.4;
  padding: 10px 12px;
  transition: color 0.2s ease;
}

#desktop-toc-container li:hover {
  background-color: #f1f5f9;
}

#desktop-toc-container li:hover a {
  color: var(--text-dark);
}

/* Active State styling */
#desktop-toc-container li.active-toc-item {
  background-color: var(--accent-light);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 8px 8px 0;
}

#desktop-toc-container li.active-toc-item a {
  color: var(--accent-color);
  font-weight: 600;
}

/* ═══════════════════════ CONTENT TYPOGRAPHY ═══════════════════════ */
.post-header {
  margin-bottom: 40px;
}

.post-title {
  font-size: var(var(--main-heading-d));
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.post-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: #ecf3fa;
  padding: 10px 24px;
  border-radius: 50px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.featured-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

/* Inner Body Styling */
.single-body {
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--text-body);
}

.single-body p {
  margin-bottom: 1.8em;
}

.single-body h2 {
  font-size: var(--sub-heading-d);
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 2.5em;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--border-color);
  scroll-margin-top: 120px;
}

.single-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2em;
  margin-bottom: 0.8em;
  scroll-margin-top: 120px;
}

.single-body img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 12px;
  margin: 40px 0;
}

.single-body a {
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-light);
  transition: all 0.2s ease;
}

.single-body a:hover {
  background-color: var(--accent-light);
  border-bottom-color: var(--accent-color);
}

.ub_table-of-contents,
.lwptoc,
.toc_container {
  display: none !important;
}

/* ═══════════════════════ RELATED POSTS CARD DESIGN ═══════════════════════ */
.related-posts-section {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 2px dashed var(--border-color);
}

.related-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.schools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.school-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.school-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.card-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.school-card:hover .card-thumb img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 16px;
}

.card-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.card-meta .meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: var(--card-burgundy);
}

.card-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.card-footer-action {
  margin-top: auto;
}

.btn-read-more-outline {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--card-burgundy);
  background-color: transparent;
  border: 1.5px solid var(--card-burgundy);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-read-more-outline:hover {
  background-color: var(--card-burgundy);
  color: #ffffff;
}

/* table design */
.single-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.single-body table th,
.single-body table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.single-body table th {
  background-color: #2d395f !important;
  color: #ffffff;
  font-weight: 600;
}

.single-body table tr:nth-child(even) {
  background-color: #fafafa;
}

@media (max-width: 768px) {
  .single-body table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
/* ═══════════════════════ RESPONSIVE QUERIES ═══════════════════════ */
@media (max-width: 1199.98px) {
  .content-col {
    padding: 0px !important;
  }
  .post-title {
    font-size: var(--main-heading-m);
  }
}
/* Tablets */
@media (max-width: 991.98px) {
  .sidebar-col {
    display: none;
  }
  .content-col {
    padding: 30px 0;
    /* Remove side padding, let container handle it */
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .schools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
/* Large Phones / Portrait Tablets */
@media (max-width: 767.98px) {
  .single-post-wrapper {
    padding: 40px 0;
  }
  .post-title {
    font-size: var(--main-heading-m);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .post-meta {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
  }
  .schools-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .single-body h2 {
    font-size: var(--sub-heading-m);
  }
  .single-body h3 {
    font-size: var(--subtle-heaidng-m);
  }
  .single-body {
    font-size: 1.05rem;
  }
}
/* Small Phones */
@media (max-width: 575.98px) {
  .single-post-wrapper {
    padding: 10px 0;
  }
  .post-title {
    font-size: var(--main-heading-m);
  }
  .featured-img-wrapper img {
    margin-bottom: 30px;
  }
  .card-body {
    padding: 18px;
  }
  .related-title {
    font-size: var(--sub-heading-m);
    margin-bottom: 25px;
  }
}

/*# sourceMappingURL=style.css.map */
