html, body {
  margin: 0 !important;
  overflow-x: hidden;
}

.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;
}

hr {
  width: 50%;
  border-bottom: 1px solid black;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1em;
  margin: 0 0 1em 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-style: none;
  border: none;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
}

h2 {
  font-size: 1.75em;
  line-height: 1.5em;
  text-decoration: none;
  border: none;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 0;
}

h3 {
  font-size: 0.9em;
  line-height: 1.5em;
}

h4 {
  font-size: 0.9em;
  line-height: 1.5em;
}

h5 {
  font-size: 0.9em;
  line-height: 1.5em;
}

h6 {
  font-size: 0.7em;
  line-height: 1.5em;
}

body {
  width: 100%;
}

#header {
  position: absolute;
}




/* =========================
   Banner
========================= */
#banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 0 !important;
}

/* Background image */
#banner .banner-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/Banner Photo.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark overlay */
#banner .banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
  margin-bottom: 0;
}

/* Content */
#banner .banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#banner .banner-content img.banner-title {
  width: 90vw;
  height: auto;
}

.apply-button a {
  border: none !important;
}

.apply-button img {
  text-shadow: none;
  width: 20rem;
  border: none !important;
}

.apply-button:hover {
  transform: translateY(-5px);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
  #banner .banner-content img.banner-title {
    width: 20%;
  }
}

@media (max-width: 768px) {
  #banner .banner-content img.banner-title {
    width: 35%;
  }
}

@media (max-width: 480px) {
  #banner .banner-content img.banner-title {
    width: 60%;
  }
}


/* =========================
   Payscale Styles
========================= */
.payscale {
  margin: 0;
  padding: 3rem 0;
  background-color: #142D47;
}


/* Each image container */
.payscale-img {
    width: 100vw;
    height: 50vh;
    overflow: hidden;
    margin: 0 auto;
    padding-bottom: 2rem;
}

/* Image fills container */
.payscale-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* prevents distortion */
    display: block;    /* removes inline-image gaps */
}

/* =========================
   Requirements Hero
========================= */

.requirements-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.4) 45%,
      rgba(0, 0, 0, 0.15) 100%
    ),
    url("../images/Badge.JPG");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 4rem;
}

/* Right-side content panel */
.requirements-panel {
  position: absolute;
  background: rgba(20, 45, 71, .9);
  color: #fff;
  height: fit-content;
  max-width: auto;
  padding: 2.5rem 3rem 0 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin-right: 0;
  right: 0;
  bottom: 1rem;
  border-radius: 1rem 0 0 1rem;
}

.requirements-panel h2 {
  position: relative;
  font-family: "Tomorrow", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  color: #fff;
}

/* extended horizontal rule */
.requirements-panel h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

/* Main list */
.requirements-list {
  list-style-type: square;
  padding-left: 1.75rem;
}


.requirements-list li {
  font-size: 1.3rem;
  line-height: 1.65;
  margin-bottom: 1.6rem;
  letter-spacing: 0.02em;
}


/* Sub-list */
.requirements-list li ul {
  list-style: disc;
  margin-top: 0.75rem;
  margin-left: 1.25rem;
}

.requirements-list li ul li {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}


/* Small helper text */
.requirements-list small {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.75;
  margin-top: 0.35rem;
}


/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {
  .requirements-hero {
    justify-content: center;
    padding: 3rem 2rem;
  }

  .requirements-panel {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .requirements-hero {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .requirements-panel {
    padding: 2rem;
  }

  .requirements-panel h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .requirements-panel {
    padding: 1.5rem;
  }

  .requirements-list li {
    font-size: 0.95rem;
  }
}

/* =========================
   Video Section
========================= */
.video {
  position: relative;
  padding-top: 120px;   /* preserves internal spacing */
}

.videoImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;        /* extend background downward */
  object-fit: cover;
  z-index: 0;
}

.videoTitleImg {
  position: relative;
  transform: translateX(-50%);
  left: 10%;
  z-index: 2;
  width: 25%;
  margin: 1rem 0;
  padding-bottom: 1rem;
}

.carousel {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0;
  padding-bottom: 10rem;
}

.main-video {
  width: 100%;
  max-width: 60%;
  aspect-ratio: 16 / 9;
}

.main-video iframe {
  width: 100%;
  height: 100%;
}

.thumbnails {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  overflow-y: visible;
  padding: 10px;
  max-width: 90%;
}

.thumbnail {
  width: 160px;
  height: 90px;
  cursor: pointer;
  opacity: 0.6;
  flex-shrink: 0;
}

.thumbnail:hover {
  cursor: pointer;
  opacity: 1;
}

.thumbnail.selected {
  opacity: 1;
  border: 2px solid white;
}

.arrow {
  cursor: pointer;
  font-size: 24px;
  margin: 0 10px;
  color: whitesmoke;
}

.arrow:hover {
  color: white;
  text-shadow: 1px 1px 10px white;
}

@media (max-width: 1024px) {
  .thumbnail {
    width: 60px;
    height: 34px;
  }

  .video {
    height: 30vh;
  }

  .carousel {
    height: 30vh;
  }
}

/* =========================
   Responsive Layout
========================= */

/* Tablet breakpoint (1024px) */
@media (max-width: 1024px) {
  .sheriff-and-posts {
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .top-posts {
    flex: 1 1 100%;
    max-width: 100%;
    gap: 2rem;
    padding: 0 1rem 2rem;
    order: 1; /* Always on top */
  }

  .requirements {
    flex: 1 1 100%;
    max-width: 60%;
    margin: 1rem auto;
    padding: 0 1rem;
    order: 2; /* Always below */
  }

  .top-post .content p,
  .top-post .content ul li {
    width: 90%;
  }
}

/* Mobile breakpoint (768px) */
@media (max-width: 768px) {
  .sheriff-and-posts {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .top-posts {
    max-width: 100%;
    width: 100%;
    padding: 0 1rem 1.5rem;
    order: 1; /* Ensure it's first */
  }

  .requirements {
    max-width: 100%;
    padding: 1rem;
    order: 2; /* Ensure it stays below */
  }

  .top-post .content h2 {
    font-size: 1.5rem;
    margin: 1rem auto;
  }

  .top-post .content p {
    font-size: 1rem;
    width: 100%;
    margin: 1rem auto;
  }

  .top-post .content ul li {
    font-size: 1rem;
    width: 100%;
    margin-left: 0;
  }

  .requirements-card {
    width: 95%;
  }
}

/* Extra Small Devices (480px) */
@media (max-width: 480px) {
  .top-posts {
    gap: 1.5rem;
    order: 1;
  }

  .culture-section {
    order: 2;
  }

  .top-post .content h2 {
    font-size: 1.3rem;
  }

  .top-post .content p {
    font-size: 0.95rem;
  }

  .culture-card .culture-body p {
    font-size: 0.9rem;
  }

  .meet-sheriff-btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}

/* =========================
   Video Hero Section
========================= */
/* Section title */
.video-content h2 {
  font-family: "Tomorrow", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 2rem;
  border-bottom: 3px solid #fff;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.main-video {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.main-video iframe {
  width: 100%;
  height: 100%;
}

/* Thumbnails row */
.thumbnails {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding: 10px;
}

.thumbnail {
  width: 160px;
  height: 90px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, transform 0.2s ease;
  overflow-y: visible;
}

.thumbnail:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.thumbnail.selected {
  opacity: 1;
  border-color: #fff;
}

/* Arrows */
.arrow {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding: 0 10px;
  user-select: none;
}

.arrow:hover {
  text-shadow: 0 0 10px #fff;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {
  .video-hero {
    padding: 3rem 1.5rem;
  }

  .thumbnail {
    width: 100px;
    height: 56px;
  }
}

@media (max-width: 768px) {
  .video {
    height: auto;
    padding: 4rem 0;
  }

  .video-content h2 {
    font-size: 2rem;
  }

  .thumbnail {
    width: 80px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .video-hero {
    min-height: auto;
    padding: 2rem 1rem;
  }

  .video-content h2 {
    font-size: 1.6rem;
  }
}

/* =========================
   Culture Section
========================= */
.culture-section {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  margin-top: 10rem;
}

.culture-container {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.culture-container h2.culture-heading {
  font-family: 'Tomorrow', sans-serif;
  font-size: 3rem;
  position: relative;
  left: 0;       
  width: 75%;
  text-align: left;
  margin-bottom: 1.5rem;
  border-bottom: 5px solid #142D47;
  padding-bottom: 0.25rem;
}

.culture-text {
  width: 50vw;
  margin-left: 6vw;   /* ← THIS is the centering fix */
}

/* Paragraph styles */
.culture-container p {
  width: 75%;
  font-size: 1.25rem;
  margin: 1rem auto;
  text-align: left;
}

.culture-container p.culture-cta {
  font-size: 1.5rem;
  font-weight: 700 !important;
  font-family: 'Tomorrow', sans-serif;
  text-transform: uppercase;
  margin: 2rem auto 0 auto;
  text-align: center;
}

.culture-image {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 45vw;          /* ← allow it to grow into the gap */
  max-width: none;      /* ← remove artificial cap */
  z-index: 1;
}

.culture-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Optional: responsive stack on small screens */
@media (max-width: 768px) {
  .culture-card .culture-body {
    grid-template-columns: 1fr;
    text-align: left;
  }
}


/* =========================
   Responsive Layout
========================= */
/* Tablet breakpoint (1024px) */
@media (max-width: 1024px) {
  .culture-section {
    flex: 1 1 100%;
    max-width: 60%;
    margin: 1rem auto;
    padding: 0 1rem;
    order: 2; /* Always below */
  }
}

@media (max-width: 900px) {
  .culture-image {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: 3rem;
  }

  .culture-text {
    margin-left: auto;
    margin-right: auto;
  }
}


/* Mobile breakpoint (768px) */
@media (max-width: 768px) {
  .culture-section {
    max-width: 100%;
    padding: 1rem;
    order: 2; /* Ensure it stays below */
  }

  .top-post .content h2 {
    font-size: 1.5rem;
    margin: 1rem auto;
  }

  .culture-card {
    width: 95%;
  }

  .culture-card .culture-title {
    font-size: 1.5rem;
  }
}

/* Extra Small Devices (480px) */
@media (max-width: 480px) {
  .culture-section {
    order: 2;
  }

  .culture-card .culture-body p {
    font-size: 0.9rem;
  }
}


/* =========================
   Benefits Section
========================= */

.benefits-section {
  padding: 8rem 2rem;
  background-image: url("../small_images/benefitsStar.webp");
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
}

.benefits-title {
  font-family: 'Tomorrow', sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 5rem;
  text-transform: uppercase;
  color: #142D47;
}

/* Grid layout */
.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem;
}

/* Full-width row */
.benefits-full {
  grid-column: 1 / -1;
  width: 100%;
  margin: auto;
}

/* Individual blocks */
.benefits-block h3 {
  font-family: 'Tomorrow', sans-serif;
  text-transform: uppercase;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #8EA2B2;
  letter-spacing: 0.05em;
}

.benefits-block li {
  font-size: 1.3rem;
}

.benefits-block h3.add-ben-title {
  text-align: center;
  width: 100%;
}

.benefits-columns {
  column-count: 2;
  column-gap: 6rem;
  list-style: square;
  padding-left: 1.25rem;
}

.benefits-columns li {
  break-inside: avoid;
  margin-bottom: 0.9rem;
  font-size: 1.3rem;
  color: #142D47;
}

/* Mobile */
@media (max-width: 900px) {
  .benefits-columns {
    column-count: 1;
  }
}


/* Mobile */
@media (max-width: 900px) {
  .benefits-columns {
    column-count: 1;
  }
}


/* =========================
   Responsive
========================= */

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-two-col {
    grid-template-columns: 1fr;
  }

  .two-col-list {
    grid-template-columns: 1fr;
  }
}


/* =========================
   Opportunities Section
========================= */
.opportunities-section {
  padding: 6rem 2rem;
  background-color: #fff;
}

.opportunities-title {
  text-align: center;
  font-family: 'Tomorrow', sans-serif;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #142D47;
  text-transform: uppercase;
}

/* Grid */
.opportunities-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

/* Card */
.opportunity-card {
  padding: 2.5rem 3rem;

  background-color: #fff;
}

.opportunity-card h3 {
  font-family: 'Tomorrow', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: #8EA2B2;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.opportunity-card ul {
  list-style: square;
  padding-left: 1.25rem;
}

/* Two-column lists for large opportunity lists */
.two-col-list {
  display: block;
  column-count: 2;
  column-gap: 3rem;
}

/* Prevent awkward splits */
.two-col-list li {
  break-inside: avoid;
}


.opportunity-card li {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: #142D47;
}

/* Highlight civilian positions callout */
.opportunity-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.opportunity-highlight p {
  font-family: 'Tomorrow', sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;

  color: #8EA2B2;
  border: 7px solid #8EA2B2;

  padding: 2rem 3rem;
  text-align: center;
  margin: 0;
}


/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .opportunities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .two-col-list {
    column-count: 1;
  }
}


/* =========================
   Recruit Section
========================= */
.recruit-section {
  background-image: url("../small_images/recruitBG.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.recruit-content {
  text-align: center;
}

.recruit-content img.recruit-title {
  width: 75vw;
  height: auto;
  margin: 2rem auto;
}

.recruit-content .recruit-apply-button a {
  border: none !important;
}

.recruit-content .recruit-apply-button img {
  text-shadow: none;
  width: 20rem;
  border: none !important;
}

.recruit-content .recruit-apply-button:hover {
  transform: translateY(-5px);
}


/* =========================
   Sheriff Card
========================= */
.meet-sheriff {
  flex: 1 1 25%;
  max-width: 75%;
  margin: 1rem auto 3rem auto;
  padding-right: 0;
  border: none;
  box-shadow: none;
}

.sheriff-card {
  width: 90%;
  margin: auto;
  transition: transform 0.3s ease, 0.3s ease;
  border: none !important;
  box-shadow: none !important;
}

/* Card title on top (already fine) */
.sheriff-card .sheriff-card-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

/* Grid for img (1/3) and paragraph (2/3) */
.sheriff-card .card-body {
  width: 90%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); /* 1/3 : 2/3 */
  align-items: center;
  gap: 0;
  border: 0 !important;
  text-align: left; 
  margin: auto;
}

/* Image styles */
.sheriff-img {
  width: 100%;
  margin: auto;
  height: auto;
  object-fit: contain;
  border: 5px solid #f8f9fa;
  border-radius: 1rem; 
  transition: border-color 0.3s ease;
}

/* Paragraph styles */
.sheriff-card .card-body p {
  width: 75%;
  font-size: 1.25rem;
  margin: auto;
}

/* Button at bottom, centered */
.meet-sheriff-btn {
  display: block;           /* ensures margin auto centers it */
  width: 30%;
  margin: 2rem auto;
  text-decoration: none;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #2E5A88;
  background-color: #2E5A88;
  color: #fff !important;
  border-radius: 2rem;
  padding: 1rem 2rem;
  cursor: pointer;
}
.meet-sheriff-btn:hover {
  background-color: #1F2A44;
  color: #fff;
  transform: translateY(-5px);
}

/* Optional: responsive stack on small screens */
@media (max-width: 768px) {
  .sheriff-card .card-body {
    grid-template-columns: 1fr;
    text-align: left;
  }
}


/* =========================
   Responsive Layout
========================= */

/* Tablet breakpoint (1024px) */
@media (max-width: 1024px) {

  .meet-sheriff {
    flex: 1 1 100%;
    max-width: 60%;
    margin: 1rem auto;
    padding: 0 1rem;
    order: 2; /* Always below */
  }

}

/* Mobile breakpoint (768px) */
@media (max-width: 768px) {
  .meet-sheriff {
    max-width: 100%;
    padding: 1rem;
    order: 2; /* Ensure it stays below */
  }


  .sheriff-card {
    width: 95%;
  }

  .sheriff-card .sheriff-card-title {
    font-size: 1.5rem;
  }

  .meet-sheriff-btn {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Extra Small Devices (480px) */
@media (max-width: 480px) {
  .meet-sheriff {
    order: 2;
  }
  .sheriff-card .card-body p {
    font-size: 0.9rem;
  }

  .meet-sheriff-btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}

.whyweber {
  width: 100%;
  text-align: center;
  margin-top: 5rem;
}

.whyweber h3 {
  width: 100%;
  font-family: "Tomorrow", sans-serif;
  color: #fff;
  font-size: 3rem;
  margin: 2rem auto 0 auto;
}

.whyweber img {
  width: 75%;
  margin: 2rem auto;
  padding-top: 0;
}

/* =========================
   Banner
========================= */
#bottom-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0 !important;
}


/* Content */
#bottom-banner .bottom-banner-content {
  margin: 5rem auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#bottom-banner .bottom-banner-content img.bottom-banner-title {
  width: 75vw;
  height: auto;
  margin-bottom: 2rem;
}

.bottom-apply-button {
  padding-bottom: 10rem;
}

.bottom-apply-button a {
  border: none !important;
}

.bottom-apply-button img {
  text-shadow: none;
  width: 20rem;
  border: none !important;
}

.bottom-apply-button:hover {
  transform: translateY(-5px);
}

.bottom-apply-button {
  padding-bottom: 7rem;
  margin-bottom: 0;
}

.bottom-banner-content hr {
  width: 100vw !important;
  margin-bottom: 0;
}



/* =========================================================
   MOBILE & TABLET OVERRIDES — DROP-IN BLOCK
   Paste at END of CSS
========================================================= */

/* ---------- GLOBAL SAFETY ---------- */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ---------- BANNER ---------- */
@media (max-width: 768px) {
  #banner {
    height: 80vh;
  }

  #banner .banner-content img.banner-title {
    width: 80vw;
  }

  .apply-button img {
    width: 14rem;
  }
}

@media (max-width: 480px) {
  #banner {
    height: 70vh;
  }

  .apply-button img {
    width: 12rem;
  }
}

/* ---------- PAYSCALE ---------- */
@media (max-width: 768px) {
  .payscale {
    padding: 2rem 0;
  }

  .payscale-img {
    width: 100%;
    height: auto;
    padding-bottom: 1.5rem;
  }

  .payscale-img img {
    object-fit: contain;
  }
}

/* ---------- REQUIREMENTS HERO ---------- */
@media (max-width: 768px) {
  .recruit-section {
    background-color: #142D47 !important;
  }

  .requirements-hero {
    min-height: auto;
    padding: 2rem 1rem;
    justify-content: center;
  }

  .requirements-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    border-radius: 1rem;
  }

  .requirements-panel h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .requirements-list li {
    font-size: 1rem;
  }
}

/* ---------- VIDEO SECTION ---------- */
@media (max-width: 768px) {
  .video {
    padding: 4rem 0;
  }

  .videoImg {
    height: 100%;
  }

  .videoTitleImg {
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
  }

  .main-video {
    max-width: 100%;
  }

  .thumbnail {
    width: 80px;
    height: 45px;
  }
}

/* ---------- CULTURE SECTION ---------- */
@media (max-width: 768px) {
  .culture-section {
    margin-top: 3rem;
  }

  .culture-container {
    padding: 3rem 1rem;
  }

  .culture-text {
    width: 100%;
    margin: 0 auto;
  }

  .culture-container h2.culture-heading {
    width: 100%;
    text-align: center;
    font-size: 2rem;
  }

  .culture-container p {
    width: 100%;
    font-size: 1rem;
  }

  .culture-image {
    position: relative;
    transform: none;
    width: 100%;
    margin-top: 2rem;
  }
}

/* ---------- BENEFITS ---------- */
@media (max-width: 768px) {
  .benefits-section {
    padding: 4rem 1rem;
    background-size: 80%;
  }

  .benefits-title {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .benefits-columns {
    column-count: 1;
  }

  .benefits-block h3 {
    text-align: center;
  }
}

/* ---------- OPPORTUNITIES ---------- */
@media (max-width: 768px) {
  .opportunities-title {
    font-size: 2rem;
  }

  .opportunities-grid {
    grid-template-columns: 1fr;
  }

  .two-col-list {
    column-count: 1;
  }

  .opportunity-highlight p {
    font-size: 1.4rem;
    padding: 1.5rem;
  }
}

/* ---------- RECRUIT SECTION ---------- */
@media (max-width: 768px) {
  .recruit-content img.recruit-title {
    width: 90%;
  }

  .recruit-content .recruit-apply-button img {
    width: 14rem;
  }

  .whyweber img {
    width: 95%;
  }
}

/* ---------- BOTTOM BANNER ---------- */
@media (max-width: 768px) {
  #bottom-banner .bottom-banner-content img.bottom-banner-title {
    width: 90%;
  }

  .bottom-apply-button img {
    width: 14rem;
  }

  .bottom-apply-button {
    padding-bottom: 4rem;
  }
}
