/* Main - Index */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.sg{
  background:linear-gradient(
    to right,
    #beccde 0%,
    #eef2f8 20%,
    #eef2f8 80%,
    #beccde 100%
  );
}

img {
  max-width: 100%;
  height: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.panel-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
}

/* Hero / slider */
.hero {
  position: relative;
  height: 300px;
  border: 1px solid #d6dae4;
  overflow: hidden;
  background: #e6e9f1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 2px;
}

.hero-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.hero-arrows .arrow {
  pointer-events: auto;
}

.arrow {
  width: 42px;
  height: 42px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.35);
}

.dots {
  display: flex;
  gap: 8px;
  padding: 10px 0 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1d1d1d;
  opacity: 0.35;
}

.dot.is-active {
  opacity: 1;
  background: #d61f26;
}

.card {
  display: grid;
  grid-template-columns: 110px 1fr 22px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #d6dae4;
  background: #f7f7f9;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  background: #f2f3f7;
}

.card img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  background: transparent;
  border: 0;
  padding: 0;
}

.card-desc {
  font-size: 13px;
  line-height: 1.35;
  color: #333;
}

.card-arrow {
  font-size: 22px;
  color: #b7bcc8;
  text-align: right;
}

.lightbox-img {
  cursor: pointer;
}

/* Map */

iframe {
  max-width: 100%;
  height: auto;
}


/* Careers */

.page-title {
  margin: 0 0 18px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.col-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.col-text {
  margin: 0 0 12px;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 8px 14px;
  background: #b3151b;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border-radius: 2px;
  font-size: 12px;
}

.btn:hover {
  filter: brightness(0.95);
}

.job-pill {
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:#d61f26;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:12px;
  border:0;
  outline:0;
}

.job-pill {
  background:#0000cc;
  float:right;
  padding:10px 16px;
  font-size:16px;
}

.job-pill:hover {
  filter:brightness(.95);
}




/* Request */

.page-title {
  margin: 0 0 18px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

/* RCL standardized form module */
.rclform,
.rclform *,
.rclform *::before,
.rclform *::after {
  box-sizing: border-box;
}

.rclform-section {
  margin-bottom: 1rem;
}

.rclform-row {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.rclform-label {
  font-weight: 600;
  line-height: 1.2;
}

.rclform-input {
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  padding: 0.5rem 0.6rem;
  background: #fff6f6;
  border: 1px solid #990000;
  border-radius: 6px;
  font: inherit;
}

.rclform-inputopt {
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  padding: 0.5rem 0.6rem;
  background: #eeffee;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  font: inherit;
}

.rclform-input--wide {
  width: 100%;
}

.rclform-csz {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.75rem;
}

.rclform-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.rclform-btn {
  min-height: 44px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  background: #d61f26;
  color: #fff;
  border: 0;
  border-radius: 999px;
  font: inherit;
}

.rclform-btn:hover {
  background: #990000;
}

.rcl-note {
  margin-top: 6px;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.6);
}


/* Responsive */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 32px;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .rclform-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .rclform-csz {
    grid-template-columns: 1fr;
  }

  .rclform-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .rclform-btn {
    width: 100%;
    font-size: 16px;
  }
}
