/* RESET & BASE STYLES */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F8FAFF;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  margin: 0;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
a {
  color: #1A2541;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #59B49E;
  outline: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1A2541;
  margin-bottom: 12px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #202124;
}

/* BRAND COLORS */
:root {
  --color-primary: #1A2541;
  --color-secondary: #59B49E;
  --color-accent: #FFD76A;
  --color-light-bg: #F8FAFF;
  --color-shadow: rgba(26, 37, 65, 0.08);
  --color-danger: #E94151;
  --color-link-hover: #13AABB;
}


/* CONTAINERS */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 900px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: stretch;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #FFFFFF;
  box-shadow: 0 1px 16px 0 var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  position: relative;
  gap: 24px;
}
header nav {
  display: none;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-right: 18px;
  margin-bottom: 0;
}
header nav a:last-child {
  margin-right: 0;
}
.button-primary {
  padding: 12px 32px;
  background: linear-gradient(92deg,#FFD76A,#59B49E 95%);
  color: #1A2541;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  border-radius: 32px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 16px 0 rgba(26, 37, 65, 0.09);
  cursor: pointer;
  outline: none;
  margin-left: 0;
  margin-top: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-sizing: border-box;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(92deg,#59B49E,#FFD76A 95%);
  color: #1A2541;
  box-shadow: 0 6px 24px 0 rgba(26, 37, 65, 0.13);
}

/* Burger menu - mobile only by default */
.mobile-menu-toggle {
  display: flex;
  background: var(--color-primary);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  z-index: 1060;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
}

/* Hide burger on desktop, show desktop nav */
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
  header nav {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1100;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.6,-0.28,.74,.05);
  box-shadow: 0 0 34px 0 rgba(26,37,65,0.17);
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
  animation: menu-slide-in 0.34s cubic-bezier(.63,-0.32,.74,.06);
}
@keyframes menu-slide-in {
  from { transform: translateX(-100vw); }
  to { transform: translateX(0); }
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 2.1rem;
  padding: 6px 18px;
  margin-bottom: 12px;
  margin-right: 12px;
  cursor: pointer;
  z-index: 1110;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
  padding-left: 32px;
  padding-right: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1A2541;
  padding: 18px 0;
  border-bottom: 1px solid #f1f1fa;
  transition: color 0.18s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #59B49E;
  background: #f8faff;
  border-radius: 0 48px 48px 0;
  outline: none;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* SECTIONS & LAYOUTS */
main {
  padding-bottom: 40px;
  background: #F8FAFF;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 16px 0 var(--color-shadow);
  position: relative;
}
@media (max-width: 480px) {
  section {
    padding: 24px 4px;
  }
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(98deg, #FFD76A 2%, #59B49E 92%);
  color: #1A2541;
  box-shadow: 0 3px 36px 0 rgba(26, 37, 65, 0.14);
  margin-bottom: 60px;
  border-radius: 0 0 36px 36px;
  padding: 64px 20px 56px 20px;
}
.hero .container .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #1A2541;
  font-size: 2.8rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.1;
}
.hero p {
  color: #1A2541;
  font-size: 1.3rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 12px 28px 12px;
    border-radius: 0 0 22px 22px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
}

/* FLEX SPACING + PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1.5px 12px 0 var(--color-shadow);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbee;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 #ffe89a3a;
  border: 2px solid #FFD76A;
  min-width: 256px;
  max-width: 448px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive Flex Patterns */
@media (max-width: 900px) {
  .content-wrapper, .content-grid, .card-container, .company-list-grid, .job-listing-grid {
    flex-direction: column !important;
    gap: 20px !important;
  }
}

/* CARDS AND LISTS */
.card,
.job-listing-grid > div,
.company-list-grid > div,
.trust-points > li,
.blog-teasers-list > li,
.candidate-benefits-icons > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 16px 0 var(--color-shadow);
  padding: 26px 18px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 7px solid var(--color-secondary);
  position: relative;
  min-width: 180px;
  transition: box-shadow 0.17s, border-color 0.18s;
}
.card:hover,
.job-listing-grid > div:hover,
.company-list-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(26,37,65,0.14);
  border-color: var(--color-accent);
  z-index: 2;
}

.job-listing-grid, .company-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.job-listing-grid > div, .company-list-grid > div {
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 320px;
}
.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-points > li {
  flex: 1 1 210px;
}

.blog-teasers-list > li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--color-primary);
}
.blog-teasers-list > li a:hover {
  color: var(--color-secondary);
}
.candidate-benefits-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.candidate-benefits-icons > div {
  flex: 1 0 180px;
}
.how-it-works-steps ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 18px;
  font-weight: 500;
}

/* FEATURES LISTS */
.features .content-wrapper ul,
.features .content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}
.features .content-wrapper li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.features .content-wrapper li img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}

.testimonial-card {
  background: #fffde3;
  border: 2px solid var(--color-accent);
  color: #202124;
  min-width: 220px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 12px 0 #ffe89a3a;
}
.testimonial-card p {
  color: #1A2541;
  font-weight: 500;
  font-size: 1.06rem;
  margin-bottom: 12px;
  text-align: center;
}
.testimonial-card strong {
  font-weight: bold;
  color: #1A2541;
}
.testimonial-card span {
  color: #FFD76A;
  font-size: 1.3em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/* FORMS & SEARCH BARS */
.search-bar, .company-search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: #fff;
  padding: 16px 16px;
  border-radius: 22px;
  box-shadow: 0 1.5px 12px 0 var(--color-shadow);
  margin: 18px 0 22px 0;
}
.search-bar input, .company-search-bar input {
  flex: 1 1 180px;
  min-width: 0;
  background: #F8FAFF;
  border: 1.5px solid #e3e8f6;
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1A2541;
  margin-bottom: 0;
}
.search-bar button, .company-search-bar button {
  padding: 12px 24px;
  background: #59B49E;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s;
}
.search-bar button:hover, .company-search-bar button:hover {
  background: #FFD76A;
  color: #1A2541;
}
.sort-options {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0 0;
}
.sort-options label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
}
.sort-options select {
  border-radius: 8px;
  border: 1.5px solid #e3e8f6;
  padding: 8px 12px;
  font-size: 1rem;
  background: #fff;
}

/* INDUSTRY FILTERS, TOPICS, SLIDERS */
.industry-filters, .topics-filter {
  margin: 0 0 20px 0;
}
.industry-filters p, .topics-filter span {
  color: #59B49E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 8px 0;
}
.popular-articles-slider {
  background: #59B49E;
  border-radius: 18px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 5px 20px -8px #59B49E50;
  margin-top: 10px;
}
.popular-articles-slider h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

/* ABOUT / NUMBERS SECTIONS */
.numbers-stats p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #1A2541;
  margin-bottom: 6px;
}
.partnerships-overview p {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #59B49E;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 10px 0;
}
.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.2px 9px 0 var(--color-shadow);
  transition: box-shadow 0.16s, background 0.15s;
  width: 40px;
  height: 40px;
}
.social-links a:hover {
  background: #FFD76A;
  box-shadow: 0 6px 24px 0 rgba(255,215,106,0.13);
}

/* CONTACT */
.contact .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
.contact .text-section ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact .text-section li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1A2541;
  font-size: 1.07rem;
}
.contact .text-section img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* FOOTER */
footer {
  background: #222f4e;
  color: #fff;
  margin-top: 60px;
  padding-top: 16px;
  padding-bottom: 12px;
  font-size: 1rem;
}
footer .container {
  padding-top: 18px;
  padding-bottom: 12px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
}
footer nav a:hover {
  color: #FFD76A;
}
.brand-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
}
.brand-address img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  vertical-align: text-bottom;
}
footer .social-links {
  margin-top: 10px;
  gap: 10px;
}
footer .social-links a {
  background: #fff;
}
footer .social-links a:hover {
  background: #59B49E;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 5000;
  background: #1A2541;
  color: #fff;
  padding: 28px 18px 26px 18px;
  box-shadow: 0 -4px 18px 0 rgba(26,37,65,0.21);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  gap: 20px;
}
.cookie-buttons button, .cookie-banner button {
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 26px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1.5px 9px 0 var(--color-shadow);
  transition: background 0.17s, color 0.18s;
}
.cookie-buttons .accept {
  background: #59B49E;
  color: #fff;
}
.cookie-buttons .accept:hover {
  background: #FFD76A;
  color: #1A2541;
}
.cookie-buttons .reject {
  background: #E94151;
  color: #fff;
}
.cookie-buttons .reject:hover {
  background: #e75966;
}
.cookie-buttons .settings {
  background: #fff;
  color: #1A2541;
  border: 2px solid #FFD76A;
}
.cookie-buttons .settings:hover {
  background: #FFD76A;
  color: #1A2541;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(26,37,65,0.73);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.35s;
}
.cookie-modal {
  background: #fff;
  padding: 32px 22px 24px 22px;
  border-radius: 22px;
  color: #1A2541;
  box-shadow: 0 7px 30px 0 #222f4e2a;
  min-width: 310px;
  max-width: 96vw;
  max-height: 92vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h3 {
  font-size: 1.3rem;
  color: #1A2541;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1A2541;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}
.cookie-modal .modal-actions button {
  padding: 10px 26px;
  border-radius: 24px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: #59B49E;
  color: #fff;
  box-shadow: 0 1.5px 9px 0 var(--color-shadow);
  transition: background 0.17s;
}
.cookie-modal .modal-actions .reject {
  background: #E94151;
}
.cookie-modal .modal-actions .save {
  background: #FFD76A;
  color: #1A2541;
}
.cookie-modal .modal-actions .save:hover {
  background: #fbe786;
}
.cookie-modal .modal-actions .close-modal {
  background: #fff;
  color: #1A2541;
  border: 2px solid #FFD76A;
}
.cookie-modal .modal-actions .close-modal:hover {
  background: #FFD76A;
  color: #1A2541;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 18px 4px 18px 4px;
  }
}

/* ANIMATIONS */
@keyframes fade-down {
  from { transform: translateY(-48px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
@keyframes fade-up {
  from { transform: translateY(32px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
section, .hero, .testimonial-card, .card {
  animation: fade-up 0.53s cubic-bezier(.72,.22,.12,.94) both;
}

/* INTERACTIONS for BUTTONS */
button, .button-primary, input[type=submit], .cookie-buttons button, .cookie-modal .modal-actions button {
  transition: background 0.21s, color 0.15s, box-shadow 0.15s, border-color 0.18s;
}
button:focus {
  outline: 2px solid #59B49E;
}
input:focus, select:focus {
  outline: 2px solid #59B49E;
  background: #e4fcf5;
}

/* RESPONSIVE: MOBILE-FIRST */
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid, .company-list-grid, .job-listing-grid, .candidate-benefits-icons {
    flex-direction: column;
    gap: 18px !important;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 3px;
    padding-right: 3px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.08rem; }
}
@media (max-width: 400px) {
  .testimonial-card, .card { padding: 16px 7px 15px 8px;}
}

/* HIGH CONTRAST FOR TESTIMONIALS/REVIEWS */
.testimonials .testimonial-card {
  background: #fffde3;
  color: #222;
  border-color: #FFD76A !important;
  box-shadow: 0 2px 12px 0 #ffe89a3a;
}

/* Misc */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}
.partner-logos img {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 #ffe89a3a;
  padding: 6px 10px;
}
/* Hide visually */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #FFD76A;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: #F8FAFF;
}

/* Vibrant extras */
.card:before, .job-listing-grid > div:before, .company-list-grid > div:before {
  content: '';
  display: block;
  width: 24px; height: 24px;
  border-radius: 50%;
  position: absolute;
  top: 14px; left: -38px;
  background: #FFE55A;
  box-shadow: 0 3px 6px 0 #FFD76A68, 0 0 0 2px #fff;
  z-index: 1;
  opacity: 0.6;
}

@media (max-width: 600px) {
  .card:before, .job-listing-grid > div:before, .company-list-grid > div:before {
    display: none;
  }
}

/* Hide default outlines when overriding focus styles */
:focus:not(:focus-visible) {
  outline: none;
}

/* Input autofill fix for modern browsers */
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset !important;
  color: #1A2541 !important;
}

/* Z-INDEX SAFETY for overlays */
.mobile-menu, .cookie-modal-overlay, .cookie-banner {
  z-index: 5000 !important;
}
