/* ==========================================================================
   UO ISA STYLING - FROSTED GLASS (DARK #153663 / LIGHT #7CA5CE / WHITE)
   ========================================================================== */

:root {
  --primary-dark: #153663;
  --primary-light: #7CA5CE;
  --accent-ice: #d8e7f5;
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.78);
  --text-dim: rgba(255, 255, 255, 0.6);

  /* Glassmorphism primitives */
  --glass-bg: rgba(21, 54, 99, 0.48);
  --glass-bg-card: rgba(21, 54, 99, 0.62);
  --glass-bg-elevated: rgba(124, 165, 206, 0.15);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-border-hover: rgba(124, 165, 206, 0.45);
  --glass-blur: blur(14px);
  --glass-blur-heavy: blur(24px);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-white);
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  background: radial-gradient(circle at 10% 20%, #1c457d 0%, #153663 50%, #0d223f 100%);
  background-attachment: fixed;
}

/* Ambient glow blobs */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.35;
}
.glow-top {
  top: -200px;
  right: -100px;
  background: #7CA5CE;
}
.glow-bottom {
  bottom: -200px;
  left: -150px;
  background: #255d9d;
}

/* --------------------------------------------------------------------------
   NAVBAR
   -------------------------------------------------------------------------- */
.navbar-container {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
}

.glass-nav {
  width: 100%;
  max-width: 1150px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-heavy);
  -webkit-backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 0.65rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-white);
}

/* Custom Brand Logo */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  height: 34px;          /* Adjust height to fit your exact logo proportions */
  width: auto;
  max-width: 48px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.nav-brand:hover .brand-logo-img {
  transform: scale(1.05);
}

/* Footer Logo */
.footer-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-acronym {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
}
.brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-white);
  background: rgba(124, 165, 206, 0.18);
}

.nav-link.active {
  color: var(--text-white);
  background: rgba(124, 165, 206, 0.32);
  border: 1px solid rgba(124, 165, 206, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   LAYOUT & CARDS
   -------------------------------------------------------------------------- */
.section-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 1;
}

.page-section {
  display: none;
  animation: fadeIn 0.35s ease forwards;
}

.page-section.active {
  display: block;
}

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

.glass-card {
  background: var(--glass-bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
}

/* --------------------------------------------------------------------------
   HERO / HOME
   -------------------------------------------------------------------------- */
.hero-container {
  max-width: 1150px;
  margin: 1rem auto 0;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-card {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(21, 54, 99, 0.75), rgba(124, 165, 206, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.butterfly-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(124, 165, 206, 0.2);
  border: 1px solid rgba(124, 165, 206, 0.4);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-ice);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.hero-institution {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 1.2rem;
}

.hero-desc {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.btn-primary:hover {
  background: #97bde2;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid var(--glass-border);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-light);
}

/* Home 2-column layout */
.home-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.card-header h2, .card-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-white);
}

.link-subtle {
  font-size: 0.85rem;
  color: var(--primary-light);
  text-decoration: none;
}
.link-subtle:hover {
  text-decoration: underline;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}
.pill {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(124, 165, 206, 0.15);
  border: 1px solid rgba(124, 165, 206, 0.25);
  padding: 0.35rem 0.7rem;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.home-banner-image-wrap {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.glass-inner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Event List Items */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.event-item {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}
.event-date-box {
  background: rgba(124, 165, 206, 0.25);
  border: 1px solid var(--primary-light);
  border-radius: 6px;
  text-align: center;
  padding: 0.3rem 0.6rem;
  min-width: 55px;
}
.event-date-month {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-light);
}
.event-date-day {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}
.event-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.event-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   SECTION HEADINGS
   -------------------------------------------------------------------------- */
.section-heading {
  text-align: center;
  margin-bottom: 2.25rem;
}
.heading-sub {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}
.section-heading h2 {
  font-size: 2rem;
  font-weight: 800;
}
.heading-desc {
  max-width: 600px;
  margin: 0.5rem auto 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   ABOUT & MAP
   -------------------------------------------------------------------------- */
.map-card {
  margin-bottom: 3rem;
  overflow: hidden;
}
.map-badge {
  font-size: 0.75rem;
  background: rgba(124, 165, 206, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  color: var(--accent-ice);
}
.map-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-bottom: 0.8rem;
  background: rgba(0, 0, 0, 0.2);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-caption {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Team Grid */
.section-heading-inline {
  margin-bottom: 1.5rem;
}
.section-heading-inline h3 {
  font-size: 1.4rem;
}
.section-heading-inline p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.team-img-wrap {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
}
.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-card:hover .team-img {
  transform: scale(1.03);
}
.team-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.2rem;
}
.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.team-origin {
  font-size: 0.82rem;
  color: var(--accent-ice);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   PROGRAMS
   -------------------------------------------------------------------------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.program-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.program-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.program-icon-wrap {
  background: rgba(124, 165, 206, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--primary-light);
}
.program-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.program-embed-box {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 1rem;
  aspect-ratio: 16/9;
  border: 1px solid var(--glass-border);
  background: #000;
}
.program-embed-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------------------------------------------------
   PINTEREST-STYLE MASONRY GALLERY
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.filter-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.filter-btn:hover {
  background: rgba(124, 165, 206, 0.2);
  color: var(--text-white);
}
.filter-btn.active {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary-light);
}

/* Pure CSS Pinterest Masonry using Column Count */
.masonry-grid {
  column-count: 3;
  column-gap: 12px; /* Tight, compact spacing */
}
@media (max-width: 900px) {
  .masonry-grid { column-count: 2; column-gap: 10px; }
}
@media (max-width: 550px) {
  .masonry-grid { column-count: 1; }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-sm); /* Subtle slight rounded corners */
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: rgba(21, 54, 99, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.masonry-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-light);
}

.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.masonry-item:hover img {
  transform: scale(1.02);
}

.masonry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0.85rem 0.65rem;
  background: linear-gradient(to top, rgba(13, 34, 63, 0.95), transparent);
  color: var(--text-white);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.masonry-item:hover .masonry-overlay {
  opacity: 1;
}
.masonry-title {
  font-size: 0.85rem;
  font-weight: 600;
}
.masonry-year {
  font-size: 0.7rem;
  color: var(--primary-light);
}

/* --------------------------------------------------------------------------
   APPLY & ORG STRUCTURE
   -------------------------------------------------------------------------- */
.org-structure-card {
  margin-bottom: 2rem;
  text-align: center;
}
.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 0;
}
.tree-level {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tree-node {
  background: rgba(124, 165, 206, 0.15);
  border: 1px solid var(--primary-light);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}
.tree-node.muted {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  font-weight: 400;
  font-size: 0.8rem;
}
.tree-connector {
  width: 2px;
  height: 14px;
  background: rgba(124, 165, 206, 0.4);
}

.roles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.role-card h4 {
  font-size: 1.1rem;
  color: var(--primary-light);
  margin-bottom: 0.25rem;
}
.role-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.65rem;
}
.role-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.role-duties {
  font-size: 0.8rem;
  color: var(--text-dim);
  padding-left: 1.2rem;
}
.role-duties li {
  margin-bottom: 0.35rem;
}

.apply-cta-card {
  background: linear-gradient(135deg, rgba(21, 54, 99, 0.8), rgba(124, 165, 206, 0.35));
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-inner h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}
.cta-inner p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   CONNECT & FAQ
   -------------------------------------------------------------------------- */
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-item svg {
  color: var(--primary-light);
}
.contact-item .label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.contact-item a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.95rem;
}
.contact-item a:hover {
  text-decoration: underline;
}

.social-links-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}
.social-link-btn:hover {
  background: rgba(124, 165, 206, 0.25);
  border-color: var(--primary-light);
}

.faq-item {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h4 {
  font-size: 0.95rem;
  color: var(--accent-ice);
  margin-bottom: 0.35rem;
}
.faq-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   LIGHTBOX MODAL
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 23, 43, 0.85);
  backdrop-filter: blur(16px);
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-image-wrap {
  max-width: 850px;
  max-height: 70vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}
.lightbox-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.lightbox-meta {
  margin-top: 1rem;
  text-align: center;
}
.lightbox-meta h4 {
  font-size: 1.1rem;
}
.lightbox-meta p {
  font-size: 0.85rem;
  color: var(--primary-light);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.glass-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(13, 34, 63, 0.7);
  backdrop-filter: var(--glass-blur);
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 10;
}
.footer-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}
.butterfly-icon-small {
  width: 20px;
  height: 20px;
  stroke: var(--primary-light);
}
.footer-subtext {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}
.copyright {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 850px) {
  .home-grid, .connect-grid {
    grid-template-columns: 1fr;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(21, 54, 99, 0.95);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    flex-direction: column;
    padding: 1rem;
    display: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  }
  .nav-links.show {
    display: flex;
  }
  .hero-card {
    padding: 2.5rem 1.25rem;
  }
}