/* ── Our Offerings / Minerals hub — Figma 1056:963 ── */
/* ── Mineral detail (Barytes) — Figma 1170:9038 ── */

/* ═══════════════ HUB BANNER — Figma 1056:965 ═══════════════ */
.of-hero {
  position: relative;
  height: 600px;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.of-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.68) 13.229%, rgba(0, 0, 0, 0) 93.854%),
    url('../assets/images/offerings/minerals/hero.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.of-hero .section-rail__dot {
  top: 233px;
}

.of-hero .section-rail__label {
  display: none;
}

.of-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 282px 222px 40px 210px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.of-hero__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 873px;
  max-width: 100%;
}

.of-hero__title {
  margin: 0;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: normal;
  letter-spacing: -0.09em;
  color: #fff;
}

.of-hero__subtitle {
  margin: 0;
  font-family: 'Blinker', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #fff;
}

.of-hero__rule {
  width: 875px;
  max-width: 100%;
  height: 1px;
  background: #fff;
  flex-shrink: 0;
}

/* ═══════════════ MINERALS GRID — Figma 1056:976 (1440×3220) ═══════════════ */
.of-minerals {
  position: relative;
  background: #000;
  overflow: hidden;
  width: 100%;
  padding: 0;
}

.of-minerals__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #000;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url('../assets/images/offerings/minerals/grid-bg2.jpg'),
    url('../assets/images/offerings/minerals/grid-bg.jpg');
  background-size: cover, cover, cover;
  background-position: center bottom, center bottom, center;
  background-repeat: no-repeat;
}

.of-minerals .section-rail__dot {
  top: 140px;
}

.of-minerals .section-rail__number {
  color: #27e3ff;
}

.of-minerals__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 50px 80px 210px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.of-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 1180px;
  max-width: 100%;
}

.of-filters__row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  width: 100%;
}

@media (max-width: 1280px) {
  .of-filters__row {
    flex-wrap: wrap;
  }
}

.of-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 10px 30px;
  box-sizing: border-box;
  border: 1px solid #5b5b5b;
  background: #5b5b5b;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  color: #27e3ff;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.of-filter:hover {
  border-color: #27e3ff;
}

.of-filter.is-active {
  background: #27e3ff;
  border-color: #27e3ff;
  color: #231f20;
}

.of-grid {
  display: grid;
  grid-template-columns: 547px 547px;
  gap: 20px;
  width: 1114px;
  max-width: 100%;
}

.of-grid__row {
  display: contents;
}

.of-card {
  display: flex;
  flex-direction: column;
  width: 547px;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
}

.of-card.is-hidden {
  display: none;
}

.of-card__media {
  position: relative;
  height: 206px;
  width: 100%;
  background: #313131;
  overflow: hidden;
  border-bottom: 1px solid #27e3ff;
  flex-shrink: 0;
}

.of-card__media img,
.of-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.of-card__media--bottom img,
.of-card__media--bottom .of-card__photo {
  object-position: center bottom;
}

/* Colour base under greyscale wash — Figma Card Hover 2225:13494 */
.of-card__photo--color {
  filter: none;
  -webkit-filter: none;
  z-index: 0;
}

.of-card__photo--wash {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

/* Fallback when JS has not cloned a wash layer yet */
.of-card__media > img:only-child {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  transition: filter 0.45s ease, -webkit-filter 0.45s ease;
}

.of-card:hover .of-card__photo--wash,
.of-card:focus-visible .of-card__photo--wash,
.of-card:focus-within .of-card__photo--wash,
.of-card.is-hovered .of-card__photo--wash {
  opacity: 0;
}

.of-card:hover .of-card__media > img:only-child,
.of-card:focus-visible .of-card__media > img:only-child,
.of-card:focus-within .of-card__media > img:only-child,
.of-card.is-hovered .of-card__media > img:only-child {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.of-card__body {
  background: #5b5b5b;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  box-sizing: border-box;
}

.of-card__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.of-card__title {
  margin: 0;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: normal;
  letter-spacing: -0.09em;
  color: #27e3ff;
}

.of-card__title span {
  font-family: 'Blinker', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
}

.of-card__desc {
  margin: 0;
  font-family: 'Blinker', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #fff;
}

.of-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 33px;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -1px;
  color: #fff;
  text-decoration: none;
}

.of-card__more img {
  width: 24px;
  height: 24px;
  display: block;
}

.of-card__foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.of-card__rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.of-card__industries {
  display: flex;
  gap: 10px;
  align-items: center;
}

.of-card__industries img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.of-card__industries p {
  margin: 0;
  font-family: 'Blinker', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #fff;
}

/* ═══════════════ WHY CHOOSE RBL — Figma 2208:11353 / 2184:10471 (1440×735) ═══════════════ */
.of-why {
  position: relative;
  height: 735px;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.of-why .section-rail__line {
  background: #231f20;
}

.of-why .section-rail__dot {
  top: 140px;
  border-color: #231f20;
}

.of-why .section-rail__number {
  color: #231f20;
}

.of-why__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.of-why__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.of-why__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.of-why__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

/* Soft wash — Figma ellipse fade on left */
.of-why__fade {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 70%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 90% 120% at 18% 48%,
      #ffffff 0%,
      rgba(255, 255, 255, 0.96) 38%,
      rgba(255, 255, 255, 0.55) 62%,
      rgba(255, 255, 255, 0) 78%
    ),
    linear-gradient(
      to right,
      #ffffff 0%,
      #ffffff 28%,
      rgba(255, 255, 255, 0.88) 48%,
      rgba(255, 255, 255, 0) 72%
    );
}

.of-why__content {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 84px 60px 214px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

/* H1 — Lexend Giga Medium 40 / tracking -9% */
.of-why__heading {
  margin: 0;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.09em;
  line-height: 1;
  color: #231f20;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

/* Figma list: flex-col gap 20px between rows + 557px rules */
.of-why__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 557px;
  max-width: 100%;
}

.of-why__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: 5px 0 20px;
  border-bottom: 0.5px solid #abaaaa;
  box-sizing: border-box;
  cursor: pointer;
}

.of-why__item:last-child {
  border-bottom: 0.5px solid #abaaaa;
}

.of-why__item.is-active {
  gap: 4px;
}

/* H3 inactive — Lexend Giga Regular 20 */
.of-why__item-title {
  margin: 0;
  max-width: 403px;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  color: #5b5b5b;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  transition:
    font-size 0.35s ease,
    color 0.35s ease,
    letter-spacing 0.35s ease;
}

/* Body 1 — Blinker Regular 20 */
.of-why__item-desc {
  margin: 0;
  max-width: 393px;
  font-family: 'Blinker', sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  color: #5b5b5b;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

/* H2 active — Lexend Giga Medium 30 / tracking -9% */
.of-why__item.is-active .of-why__item-title {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.09em;
  color: #231f20;
}

.of-why__item.is-active .of-why__item-desc {
  max-height: 72px;
  opacity: 1;
}

/* Hub sectors: reuse .sectors, number 04 */
.of-sectors.sectors .section-rail__number {
  color: #27e3ff;
}

/* Hub CTA — Figma Need a Custom Solution? */
.of-cta {
  position: relative;
  background: #555353;
  overflow: hidden;
  min-height: 294px;
}

.of-cta .section-rail__dot {
  top: auto;
  bottom: 84px;
}

.of-cta__inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 100px 80px 210px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 39px;
  text-align: center;
}

.of-cta__heading {
  margin: 0;
  max-width: 1044px;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: normal;
  letter-spacing: -0.09em;
  color: #fff;
}

.of-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid #fff;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.of-cta__button:hover {
  background: #fff;
  color: #231f20;
}

/* ═══════════════ DETAIL: BARYTES BANNER ═══════════════ */
.of-banner {
  position: relative;
  height: 600px;
  background: #000;
  overflow: hidden;
}

.of-banner__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/offerings/barytes/hero-bg.jpg') center / cover no-repeat;
}

.of-banner .section-rail__dot {
  top: 233px;
}

.of-banner .section-rail__label {
  display: none;
}

.of-banner__content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
  grid-template-areas: "text mineral";
  align-items: center;
  column-gap: 40px;
  row-gap: 28px;
  padding: 140px 48px 48px 210px;
  height: 600px;
  min-height: 0;
}

.of-banner__text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: none;
  min-width: 0;
}

.of-banner__title {
  margin: 0;
  display: block;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.09em;
  color: #fff;
}

.of-banner__title-main {
  font-size: 60px;
}

.of-banner__title-formula {
  font-size: 30px;
  letter-spacing: -0.09em;
  white-space: normal;
}

.of-banner__subtitle {
  margin: 0;
  font-family: 'Blinker', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}

.of-banner__divider {
  width: min(505px, 100%);
  height: 1px;
  background: #fff;
  margin: 12px 0 16px;
}

.of-banner__mineral {
  grid-area: mineral;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
  object-position: center right;
  justify-self: end;
  align-self: center;
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════ DETAIL: KEY INDUSTRIES — Figma 1170:9052 ═══════════════ */
.of-industries {
  position: relative;
  height: 762px;
  background: #000;
  overflow: hidden;
  padding: 0;
}

.of-industries__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url('../assets/images/offerings/barytes/industries-bg.jpg') center / cover no-repeat;
}

.of-industries .section-rail__dot {
  top: 179px;
}

.of-industries .section-rail__number {
  color: #27e3ff;
}

.of-industries__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
}

.of-industries__heading {
  position: absolute;
  z-index: 2;
  left: 241px;
  top: 73px;
  margin: 0;
  width: 1065px;
  max-width: calc(100% - 48px);
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.09em;
  line-height: 1;
  color: #27e3ff;
  text-align: center;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

.of-industries__inner {
  position: absolute;
  z-index: 2;
  left: 241px;
  top: 160px;
  width: 1065px;
  max-width: calc(100% - 48px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.of-industries__row {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.of-industries__row--bottom {
  width: auto;
}

.of-industry {
  width: 335px;
  height: 240px;
  border: 1px solid #abaaaa;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.35s ease;
}

.of-industry:hover,
.of-industry:focus-visible {
  border-color: #27e3ff;
}

.of-industry__media {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  overflow: hidden;
}

.of-industry__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.of-industry__img--color {
  filter: none;
  -webkit-filter: none;
  z-index: 0;
}

.of-industry__img--wash {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.of-industry__media > img:only-child {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  transition: filter 0.45s ease, -webkit-filter 0.45s ease;
}

.of-industry:hover .of-industry__img--wash,
.of-industry:focus-visible .of-industry__img--wash,
.of-industry.is-hovered .of-industry__img--wash {
  opacity: 0;
}

.of-industry:hover .of-industry__media > img:only-child,
.of-industry:focus-visible .of-industry__media > img:only-child,
.of-industry.is-hovered .of-industry__media > img:only-child {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.of-industry--oil .of-industry__img { object-position: 48% 42%; }
.of-industry--paints .of-industry__img { object-position: 62% 42%; }
.of-industry--plastics .of-industry__img { object-position: 72% 40%; }
.of-industry--rubber .of-industry__img { object-position: 50% 72%; }
.of-industry--radiation .of-industry__img { object-position: 18% 48%; }
.of-industry--center .of-industry__img { object-position: center; }

.of-industry__label {
  margin: 0;
  flex-shrink: 0;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  color: #27e3ff;
  white-space: nowrap;
  line-height: 1;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════ DETAIL: PRIMARY USES ═══════════════ */
.of-uses {
  position: relative;
  overflow: hidden;
  padding: 120px 210px;
  box-sizing: border-box;
  min-height: 715px;
}

.of-uses__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(89.43deg, rgba(26, 26, 26, 0.882) 38.481%, rgba(0, 0, 0, 0) 89.832%),
    url('../assets/images/offerings/barytes/uses-bg.jpg') center / cover no-repeat,
    #dfdfdf;
}

.of-uses .section-rail__number {
  color: #27e3ff;
}

.of-uses__content {
  position: relative;
  z-index: 2;
  width: 484px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.of-uses__head-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.of-uses__heading {
  margin: 0;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.09em;
  color: #27e3ff;
}

.of-list {
  margin: 0;
  padding: 0 0 0 30px;
  font-family: 'Blinker', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #fff;
}

.of-list li + li {
  margin-top: 10px;
}

.of-list--spaced li + li {
  margin-top: 1em;
}

.of-box {
  border: 1px solid #5b5b5b;
  width: 100%;
}

.of-box__head {
  background: #5b5b5b;
  padding: 10px;
}

.of-box__title {
  margin: 0;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #27e3ff;
}

.of-box__body {
  padding: 20px;
}

/* ═══════════════ DETAIL: CHARACTERISTICS ═══════════════ */
.of-chars {
  position: relative;
  overflow: hidden;
  padding: 120px 210px;
  box-sizing: border-box;
  min-height: 676px;
  background: #dfdfdf;
}

.of-chars__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.of-chars__overlay {
  position: absolute;
  inset: 0;
  background: url('../assets/images/offerings/barytes/chars-overlay.png') right center / cover no-repeat;
  pointer-events: none;
  opacity: 0.85;
}

.of-chars .section-rail__line,
.of-chars .section-rail__dot {
  background: #231f20;
}

.of-chars .section-rail__number {
  color: #231f20;
}

.of-chars__content {
  position: relative;
  z-index: 2;
  width: 548px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.of-chars__head-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.of-chars__heading {
  margin: 0;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.09em;
  color: #231f20;
}

.of-chars .of-list {
  color: #231f20;
}

.of-chars .of-box__head {
  background: #abaaaa;
}

.of-chars .of-box__title {
  color: #231f20;
}

/* ═══════════════ DETAIL: KEY PROPERTIES ═══════════════ */
.of-props {
  position: relative;
  overflow: hidden;
  padding: 120px 210px;
  box-sizing: border-box;
  min-height: 433px;
}

.of-props__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(89.06deg, rgba(26, 26, 26, 0.882) 38.481%, rgba(0, 0, 0, 0) 89.832%),
    url('../assets/images/offerings/barytes/props.png') right center / contain no-repeat,
    #1a1a1a;
}

.of-props .section-rail__number {
  color: #27e3ff;
}

.of-props__content {
  position: relative;
  z-index: 2;
  width: 1001px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.of-props__heading {
  margin: 0;
  font-family: 'Lexend Giga', sans-serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.09em;
  color: #27e3ff;
}

.of-props__list {
  width: 441px;
  max-width: 100%;
}

.of-props__list li + li {
  margin-top: 0;
}

/* Empty mineral detail — keep Figma section shells with blank bodies */
.of-empty .of-industries,
.of-empty .of-uses,
.of-empty .of-chars,
.of-empty .of-props {
  height: auto;
  min-height: 520px;
}

.of-empty .of-industries__heading,
.of-empty .of-industries__inner {
  left: 50%;
  transform: translateX(-50%);
}

.of-empty .of-industries__inner,
.of-empty .of-uses__content,
.of-empty .of-chars__content,
.of-empty .of-props__content {
  min-height: 200px;
}

/* Wide viewport rail centering (match explore/capabilities) */
@media (min-width: 1441px) {
  .of-hero .section-rail,
  .of-minerals .section-rail,
  .of-why .section-rail,
  .of-banner .section-rail,
  .of-industries .section-rail,
  .of-uses .section-rail,
  .of-chars .section-rail,
  .of-props .section-rail,
  .of-cta .section-rail,
  .of-sectors .section-rail {
    left: calc((100% - 1440px) / 2 + 98px);
  }
}

@media (max-width: 1200px) {
  .of-minerals__inner,
  .of-hero__content,
  .of-uses,
  .of-chars,
  .of-props {
    padding-left: var(--content-offset);
    padding-right: var(--content-padding);
  }

  .of-banner__content {
    padding: 120px var(--content-padding) 48px var(--content-offset);
    height: 600px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 38%);
    column-gap: 28px;
  }

  .of-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .of-card {
    width: 100%;
    max-width: 100%;
  }

  .of-uses,
  .of-chars,
  .of-props {
    height: auto;
  }

  .of-industries {
    height: auto;
    min-height: 762px;
    padding: 100px 24px 80px;
  }

  .of-industries__stage {
    height: auto;
  }

  .of-industries__heading {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin: 0 auto 40px;
  }

  .of-industries__inner {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 1065px;
    margin: 0 auto;
  }

  .of-industries__row {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .of-hero,
  .of-banner {
    height: auto;
    min-height: 420px;
  }

  .of-hero__title,
  .of-banner__title-main {
    font-size: 36px;
  }

  .of-why {
    height: auto;
    min-height: 560px;
  }

  .of-why__content {
    padding: 100px var(--content-padding) 60px var(--content-offset);
  }

  .of-why__list {
    width: 100%;
  }

  .of-industry {
    width: 100%;
    max-width: 335px;
  }

  .of-banner__content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "mineral";
    padding: 140px var(--content-padding) 48px var(--content-offset);
    min-height: 420px;
    align-items: start;
  }

  .of-banner__mineral {
    width: min(72%, 280px);
    max-height: 220px;
    justify-self: end;
  }
}
