@import url('https://fonts.googleapis.com/css2?family=Anton&family=Work+Sans:wght@400;600;700&display=swap');

:root {
  --color-primary: #c8102e; /* Live Vibe Red */
  --color-secondary: #FFB800; /* Yellow Accent */
  --color-dark: #1e1e1e;
  --color-text-dark: #291715;
  --color-text-light: #F2F2F2;
  --color-bg-light: #fdfdfd;
  --color-bg-accent: #f5ecec;
  --color-white: #FFFFFF;
  
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-dark);
}

h1 { font-size: clamp(3rem, 10vw, 8rem); letter-spacing: -2px; }
h2 { font-size: clamp(2rem, 6vw, 5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }

p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  color: #444;
}

.text-primary { color: var(--color-primary); }

.subtitle {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Layout */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    box-sizing: border-box;
}

@keyframes slowRotate {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

.rotating-diamond {
    animation: slowRotate 200s linear infinite;
}
section { padding: var(--spacing-xl) 0; position: relative; }

/* Header & Nav */
header {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 1rem 0;
  background: var(--color-white);
  z-index: 1000;
  border-bottom: 1px solid #eaeaea;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px; height: 40px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
}
.logo-icon::after {
  content: '';
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--color-white);
  margin-left: 4px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  line-height: 1;
  letter-spacing: 1px;
}
.logo-text span { color: var(--color-primary); }
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #595959;
  display: block;
}

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--color-dark);
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-primary); }
.nav-links a.active { border-bottom: 2px solid var(--color-primary); padding-bottom: 2px; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all 0.3s;
}
.mobile-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.mobile-overlay.active { display: block; }

/* Buttons */
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  padding: 1rem 2.5rem; font-family: var(--font-heading);
  font-size: 1.25rem; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.3s;
}
.btn-primary { background-color: var(--color-primary); color: var(--color-white); }
.btn-primary:hover { background-color: #a00b22; }
.btn-dark { background-color: var(--color-dark); color: var(--color-white); }
.btn-dark:hover { background-color: #000; }
.btn-outline { background-color: transparent; color: var(--color-dark); border: 2px solid var(--color-dark); }
.btn-outline:hover { background-color: var(--color-secondary); color: var(--color-dark); border-color: var(--color-secondary); }

/* Grid Utilities */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* Specific Sections */
.red-banner { background-color: var(--color-primary); color: var(--color-white); padding: var(--spacing-lg) 0; }
.red-banner h2 { color: var(--color-white); }
.red-banner p { color: rgba(255,255,255,0.9); }

/* Forms */
.form-group { margin-bottom: 1.5rem; }
.form-control {
  width: 100%; padding: 1rem;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 1rem; background: var(--color-white);
}
.form-control:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.25); }

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* Focus states for all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}
.nav-links a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* Marquee pause on hover/focus */
.marquee-container:hover .marquee-track,
.marquee-container:focus-within .marquee-track {
  animation-play-state: paused;
}

/* Screen reader only text */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Marquees */
.marquee-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; }
.marquee-track { display: inline-flex; animation: scroll-marquee 20s linear infinite; align-items: center; will-change: transform; }
.marquee-track.reverse { animation-direction: reverse; }
.marquee-text {
  font-family: var(--font-heading); font-size: 4rem;
  color: #ddd; margin: 0 2rem;
}
.marquee-text.filled { color: var(--color-bg-accent); }
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Page Footer */
.main-footer { padding: 6rem 0 2rem; border-top: 1px solid #eee; }
.footer-grid { display: grid; grid-template-columns: 3fr 1fr 1fr 1fr; gap: 1.5rem; margin-bottom: 4rem; }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.footer-col h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 1px; color: var(--color-dark); }
.footer-col a, .footer-col p { display: block; color: #595959; text-decoration: none; font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-col a:hover { color: var(--color-primary); }
.footer-bottom { border-top: 1px solid #eee; padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.8rem; color: #595959; }

/* Geometry Accents */
.accent-triangle {
  position: absolute; width: 200px; height: 200px;
  background: var(--color-primary);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.05; z-index: -1;
}
.accent-diamond {
  position: absolute; width: 300px; height: 300px;
  background: var(--color-primary);
  transform: rotate(45deg); opacity: 0.1; z-index: -1;
}

/* Custom Utilities */
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.bg-dark { background-color: var(--color-dark); color: var(--color-white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--color-white); }
.bg-dark p { color: #aaa; }
.text-center { text-align: center; }

/* Contact Specific */
.contact-info-box { background: var(--color-bg-accent); padding: 3rem; border-radius: 4px; height: 100%; }
.contact-info-item { margin-bottom: 2rem; }
.contact-info-item h4 { color: var(--color-primary); font-size: 1.25rem; margin-bottom: 0.5rem; }
.contact-info-item p { color: var(--color-dark); font-weight: 600; margin-bottom: 0; }

/* Careers Specific */
.job-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem; border: 1px solid #eee; margin-bottom: 1rem;
  background: var(--color-white); transition: all 0.3s;
}
.job-card:hover { border-color: var(--color-primary); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.job-card-icon { width: 50px; height: 50px; background: var(--color-bg-accent); display: flex; align-items: center; justify-content: center; color: var(--color-primary); margin-right: 1.5rem; }
.job-badge { background: #eee; padding: 0.25rem 1rem; font-size: 0.8rem; font-weight: 700; color: var(--color-dark); border-radius: 20px; }

/* About Specific */
.stat-item h3 { font-size: 4rem; color: var(--color-primary); margin-bottom: 0.25rem; }
.stat-item p { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.value-card { text-align: center; padding: 2rem 1rem; border: 1px solid #eee; height: 100%; }
.value-icon { font-size: 2rem; color: var(--color-primary); margin-bottom: 1rem; }

/* Progress bar */
.progress-wrap { margin-bottom: 1.5rem; }
.progress-label { display: flex; justify-content: space-between; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.5rem; text-transform: uppercase; }
.progress-label span:last-child { color: var(--color-primary); }
.progress-bar { width: 100%; height: 8px; background: #eee; border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--color-primary); }
.progress-fill.yellow { background: var(--color-secondary); }

/* Hero Squares Animations */
@keyframes slow-rock-red {
  0% { transform: rotate(45deg); }
  50% { transform: rotate(55deg); }
  100% { transform: rotate(45deg); }
}
@keyframes slow-rock-yellow {
  0% { transform: rotate(45deg); }
  50% { transform: rotate(35deg); }
  100% { transform: rotate(45deg); }
}

.hero-square-red {
  position: absolute; right: -22vw; top: 50%; margin-top: -22vw;
  width: 44vw; height: 44vw;
  background: var(--color-primary);
  z-index: -2;
  transform: rotate(45deg);
  transform-origin: center center;
  animation: slow-rock-red 25s ease-in-out infinite;
  will-change: transform;
}

@keyframes slow-rock-yellow-inner {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}

.hero-square-yellow {
  position: absolute;
  left: 8vw; bottom: 10vw;
  width: 28vw; height: 28vw;
  background: var(--color-secondary);
  transform-origin: 50% 57.1428%;
  animation: slow-rock-yellow-inner 33s ease-in-out infinite;
  will-change: transform;
}

/* =============================================
   MOBILE OPTIMIZATION COMPONENTS
   ============================================= */

/* Section Padding Utilities */
section { contain: layout style; }
.section-py-lg { padding: 8rem 0; }
.section-py-md { padding: 6rem 0; }
.section-py-sm { padding: 4rem 0; }

/* Hero Content */
.hero-content { padding-left: 4rem; padding-right: 1rem; position: relative; z-index: 1; }

/* Hero Section */
.hero-section { padding-left: 1rem; padding-right: 1rem; }

/* Why Choose Us Header */
.why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Services 3x3 Grid */
.services-grid {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.1);
  border: 2px solid rgba(0,0,0,0.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.services-grid .grid-cell {
  background: white;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #111;
}
.services-grid .grid-cell i { transition: color 0.3s ease; }
.services-grid .grid-cell:hover {
  transform: scale(1.05);
  z-index: 10;
}
.services-grid .grid-cell.cell-red:hover {
  background: #E31837;
  color: white;
  box-shadow: 0 10px 20px rgba(227,24,55,0.3);
}
.services-grid .grid-cell.cell-red:hover i { color: white; }
.services-grid .grid-cell.cell-dark:hover {
  background: #111;
  color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.services-grid .grid-cell.cell-dark:hover i { color: white; }

/* Events Header Row */
.events-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Talent Cards */
.talent-card {
  position: relative;
  height: 500px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* CTA Form */
.cta-form {
  background: white;
  padding: 4rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Service Cards */
.service-card {
  background: white;
  padding: 4rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card--red { border-top: 8px solid var(--color-primary); }
.service-card--yellow { border-top: 8px solid var(--color-secondary); }
.service-card--gray { border-top: 8px solid #E5E7EB; }

/* Core Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: white;
  border: 1px solid #E5D5D5;
}
.values-grid > div { padding: 2rem; border-right: 1px solid #E5D5D5; display: flex; flex-direction: column; }

/* Roles Header (Careers) */
.roles-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

/* Gallery Grid (Modal) */
.gallery-grid {
  column-count: 3;
  column-gap: 1.5rem;
}
.gallery-grid > div {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background: #222;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border 0.3s;
}
.gallery-grid > div:hover {
  border: 2px solid var(--color-primary);
}
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}
.gallery-grid img:hover {
  transform: scale(1.08);
}

/* Footer location link hover */
.footer-location a:hover { color: var(--color-primary) !important; }

/* Gallery modal close button hover */
#galleryModal button[aria-label="Close gallery"]:hover { color: var(--color-primary) !important; }

/* Careers Gallery */
.careers-gallery img { height: 450px; }

/* Modal Components */
.modal-content {
  background: white;
  width: 100%;
  max-width: 650px;
  position: relative;
  display: flex;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.modal-sidebar {
  background: var(--color-primary);
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.modal-body {
  flex: 1;
  padding: 3rem 4rem;
  position: relative;
  background: white;
}
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: #FFF4CD;
  border: none;
  width: 100px;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 1.5rem;
}

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

/* Tablet & Below */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .container-fluid { padding: 0 2rem; }
    h1 { font-size: 5rem !important; }
    h2 { font-size: 3.5rem !important; }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .values-grid > div:nth-child(3) { border-right: none; }
    .gallery-grid { column-count: 2; }
}

/* Mobile */
@media (max-width: 768px) {
    body { padding-top: 70px !important; overflow-x: hidden; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 2rem; }
    .container-fluid { padding: 0 1.25rem; }
    .container { padding: 0 1.25rem; }
    h1 { font-size: 3rem !important; line-height: 0.85 !important; letter-spacing: -1px !important; }
    h2 { font-size: 2.2rem !important; line-height: 0.9 !important; }
    h3 { font-size: 3.5rem !important; line-height: 1 !important; }
    p { font-size: 0.95rem !important; line-height: 1.7 !important; }
    .rotating-diamond { width: 300px !important; height: 300px !important; border-width: 40px !important; left: -80px !important; }

    /* Header mobile */
    header { padding: 0.5rem 0; }
    .logo-container { gap: 0.75rem !important; }
    .logo-container > div:first-child { width: 45px !important; height: 45px !important; min-width: 45px !important; }
    .logo-container > div:first-child > div { border-top-width: 10px !important; border-bottom-width: 10px !important; border-left-width: 16px !important; margin-left: 4px !important; }
    .logo-container > div:last-child { border-left: none !important; padding-left: 0 !important; }
    .logo-container > div:last-child > div:first-child { font-size: 1.1rem !important; }
    .logo-container > div:last-child > div:last-child { font-size: 0.5rem !important; }

    /* Mobile nav */
    .mobile-menu-toggle { display: flex; }
    nav { position: static; }
    nav .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    nav .nav-links.open { right: 0; }
    nav .nav-links .btn { width: 100%; text-align: center; padding: 1rem 1.5rem; }

    /* Hero */
    .hero-content { padding-left: 0.5rem; padding-right: 0.5rem; }
    .hero-edge-bars { display: none; }
    .hero-section { padding-left: 0 !important; padding-right: 0 !important; }
    .hero-badges { flex-wrap: wrap; gap: 0.5rem !important; }
    .hero-badges span { font-size: 0.7rem !important; padding: 0.25rem 0.75rem !important; }
    .hero-cta { flex-wrap: wrap; gap: 1rem !important; }
    .hero-cta .btn { padding: 0.85rem 2rem !important; font-size: 0.85rem !important; }
    .hero-bar { width: 100% !important; margin-top: 3rem !important; }
    .hero-square-red { display: none; }

    /* Insight stat */
    .insight-stat { flex-direction: column !important; gap: 1rem !important; }
    .insight-stat > div:first-child { width: 4px !important; height: 100% !important; margin-right: 0 !important; }
    .insight-stat .stat-number { font-size: 4rem !important; }
    .insight-stat .stat-desc { max-width: 100% !important; padding-top: 0 !important; }

    /* Tech stack card */
    .tech-stack-card { padding: 2rem 1.25rem !important; }
    .tech-stack-card .stack-label { font-size: 0.65rem !important; }

    /* Section padding */
    .section-py-lg { padding: 4rem 0; }
    .section-py-md { padding: 3rem 0; }
    .section-py-sm { padding: 2rem 0; }

    /* Why Choose Us */
    .why-header > div:last-child { text-align: left; max-width: 100%; }

    /* About stats */
    .about-stats h3 { font-size: 3.5rem !important; }
    .about-stats h3 > span:last-child { font-size: 2rem !important; }

    /* Services Grid */
    .services-grid { max-width: 100%; grid-template-columns: repeat(3, 1fr); }
    .services-grid > div { padding: 0.75rem 0.5rem; }
    .services-grid > div i { font-size: 1.25rem !important; }
    .services-grid > div span { font-size: 0.55rem !important; }

    /* Contact form */
    .contact-form-card { padding: 2rem 1.25rem !important; }
    .contact-info-card { padding: 2rem 1.25rem !important; }
    .contact-form-card .grid-2 { grid-template-columns: 1fr !important; gap: 1rem !important; }

    /* Talent pool form */
    .talent-form { flex-direction: column !important; gap: 0.75rem !important; }
    .talent-form button { padding: 1rem !important; }

    /* Gallery Modal */
    .gallery-grid { column-count: 1; }

    /* Talent Cards */
    .talent-card { height: 350px; }

    /* CTA Form */
    .cta-form { padding: 2rem 1.25rem; }

    /* Service Cards */
    .service-card { padding: 2rem 1.25rem; }

    /* Core Values Grid */
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid > div { border-right: none; border-bottom: 1px solid #E5D5D5; }
    .values-grid > div:last-child { grid-column: span 2; border-bottom: none; }

    /* Footer */
    .main-footer { padding: 3rem 0 1.5rem; }

    /* Marquee */
    .marquee-text { font-size: 2rem; margin: 0 1rem; }

    /* Logo */
    .logo-container { gap: 0.75rem; }

    /* Careers */
    .roles-header h2 { font-size: 2.5rem !important; }
    .careers-gallery img { height: 250px !important; }

    /* Modal */
    .modal-content { flex-direction: column; max-width: 95%; max-height: 90vh; overflow-y: auto; }
    .modal-sidebar { width: 100%; height: 40px; }
    .modal-sidebar div { transform: rotate(0deg); }
    .modal-body { padding: 2rem 1.5rem; }
    .modal-close { width: 50px; height: 50px; clip-path: none; border-radius: 50%; }
    .modal-close i { font-size: 1rem; }

    /* Job cards */
    .job-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
