/*-----------------------------------------------------------------------------------
  Ratakanan Studio — Brand tokens (single source of truth)

  Loads AFTER style.css. Edit THIS file to change brand colors/fonts site-wide.
  Remaps Redox CSS variables so existing classes inherit without layout changes.

  Accent hierarchy (role, not equal pair):
  - --color-accent-primary (Cyan #19B8FF): interactive — links, buttons, CTAs,
    hover/active, active nav, interactive borders/underlines
  - --color-accent-secondary (Lime #C7DD18): rare highlight — funfact/stat numbers,
    badges, one-off markers. Never adjacent to Cyan in same component/section.
-----------------------------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;1,14..32,400&family=Montserrat:ital,wght@0,500;0,600;0,700;1,500;1,600;1,700&display=swap");

:root {
  /* —— Brand palette —— */
  --color-bg: #111111;
  --color-bg-secondary: #1c1c1c;
  --color-accent-primary: #19b8ff;
  --color-accent-secondary: #c7dd18;
  --color-text: #f5f5f5;
  --color-text-secondary: #b9bec6;

  /* —— Map Redox color tokens → brand —— */
  --primary: #111111;
  --secondary: #555555;
  --border: rgba(17, 17, 17, 0.1);
  --bg: var(--color-bg);
  --theme: var(--color-accent-primary);
  --theme-2: var(--color-accent-secondary); /* unused by Redox; keep for rare Lime hooks */
  --action: var(--color-accent-primary);
  --black: var(--color-bg);
  --black-2: var(--color-text-secondary);
  --white: #ffffff;
  --white-2: var(--color-text-secondary);

  /* —— Font stacks —— */
  --font_montserrat: "Montserrat", sans-serif;
  --font_inter: "Inter", sans-serif;

  --font_dmsans: var(--font_inter);
  --font_instrumentsans: var(--font_montserrat);
  --font_thunder: var(--font_montserrat);
  --font_sequelsansromanbody: var(--font_montserrat);
  --font_sequelsansmediumbody: var(--font_montserrat);
  --font_timesnow: var(--font_montserrat);
  --font_bdogrotesk: var(--font_montserrat);
  --font_tartuffo: var(--font_montserrat);
  --font_tartuffotrial: var(--font_montserrat);

  --rr-color-theme-primary: var(--color-accent-primary);
  --rr-color-theme-secondary: var(--color-accent-secondary);
  --rr-color-common-dark: var(--color-bg);
  --rr-color-heading-primary: var(--color-bg);
  --rr-color-text-body: var(--color-text-secondary);
  --rr-color-bg-1: var(--color-bg-secondary);
  --rr-ff-body: var(--font_inter);
  --rr-ff-heading: var(--font_montserrat);
  --rr-ff-p: var(--font_inter);
}

:root .dark {
  --primary: var(--color-text);
  --secondary: var(--color-text-secondary);
  --border: rgba(245, 245, 245, 0.1);
  --bg: var(--color-bg-secondary);
  --rr-color-heading-primary: var(--color-text);
  --rr-color-common-white: var(--color-text);
}

/* —— Base typography (display .section-title keeps Redox scale for layout) —— */

body {
  font-family: var(--font_inter);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_montserrat);
}

h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
}

h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
}

p {
  font-family: var(--font_inter);
}

.section-title.font-instrumentsans-medium,
.font-heading-instrumentsans-medium h1,
.font-heading-instrumentsans-medium h2,
.font-heading-instrumentsans-medium h3,
.font-heading-instrumentsans-medium h4,
.font-heading-instrumentsans-medium h5,
.font-heading-instrumentsans-medium h6 {
  font-family: var(--font_montserrat);
  font-weight: 600;
}

.hero-area .section-title {
  font-weight: 700;
}

/* Hero was a 3-col grid (award | title | stats). Award badge removed →
   title was landing in the 130px award column and wrapping vertically. */
.hero-area .hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
  gap: 40px 80px;
}

@media only screen and (max-width: 1919px) {
  .hero-area .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 490px);
  }
}

@media only screen and (max-width: 1399px) {
  .hero-area .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
    gap: 40px 60px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-area .hero-content {
    grid-template-columns: 1fr;
  }
}

.hero-area .section-title {
  max-width: 720px;
}

/* —— Header wordmark (logo-new.png) ——
   Pill chrome restored from Redox (.header__logo: border + radius 60px + pad).
   Height-only on img so aspect stays true. Offcanvas/footer never had pill
   strip — leave those alone. */
.header-area .header__logo img {
  height: 36px;
  width: auto;
  max-width: none;
}

/* Mobile/tablet (hamburger visible, < xl):
   1) Redox puts margin-inline-end:auto on nth-child(2) (.header__nav).
      Nav is display:none below xl, so the flex spacer never applies and the
      hamburger sits beside the logo — push trailing chrome right via logo.
   2) Bootstrap .container gains max-width from ≥576px (540/720/960), so the
      logo/hamburger sit far from the viewport edges while the bar looks inset.
      Drop max-width below xl; keep --bs-gutter-x (15px) as the only side pad.
   Desktop ≥1200 keeps Bootstrap container max-width unchanged. */
@media only screen and (max-width: 1199px) {
  .header-area .container.large {
    max-width: none;
    width: 100%;
  }

  .header-area__inner > .header__logo {
    margin-inline-end: auto;
  }
}

.offset-logo {
  width: auto;
}

.offset-logo img {
  height: 36px;
  width: auto;
  max-width: none;
}

/* —— Live-text wordmark (recovered from fdfd030; divider + STUDIO 400 adapted) ——
   Base = compact lockup. Footer-top scales up as closing brand statement. */
.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
  line-height: 1;
  text-decoration: none;
  color: var(--color-text);
}

.brand-wordmark:hover,
.brand-wordmark:focus-visible {
  color: var(--color-text);
}

.brand-wordmark__name {
  font-family: var(--font_montserrat);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5F5F5;
}

.brand-wordmark__rule {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 0.5em 0.55em;
  background: linear-gradient(180deg, #19B8FF 0%, #C7DD18 100%);
}

.brand-wordmark__sub {
  font-family: var(--font_montserrat);
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #F5F5F5;
}

/* Footer-top closing lockup — larger than nav; sized to Redox .footer-logo
   max-width ladder (657 → 257 → 207 → 147) so text never overflows slot. */
.footer-area .footer-logo .brand-wordmark__name {
  font-size: 2.5rem;
  letter-spacing: 0.12em;
}

.footer-area .footer-logo .brand-wordmark__sub {
  font-size: 0.95rem;
  letter-spacing: 0.36em;
}

@media only screen and (max-width: 1919px) {
  .footer-area .footer-logo .brand-wordmark__name {
    font-size: 2rem;
  }

  .footer-area .footer-logo .brand-wordmark__sub {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-area .footer-logo .brand-wordmark__name {
    font-size: 1.5rem;
  }

  .footer-area .footer-logo .brand-wordmark__sub {
    font-size: 0.65rem;
  }
}

@media only screen and (max-width: 991px) {
  .footer-area .footer-logo .brand-wordmark__name {
    font-size: 1.125rem;
  }

  .footer-area .footer-logo .brand-wordmark__sub {
    font-size: 0.55rem;
  }
}

/* Longer CTA label than demo “Let’s Talk” — keep pill height, tighten pad */
.header-area .header__button .rr-btn {
  font-size: 14px;
  padding: 22px 28px;
  white-space: nowrap;
}

.header-area .main-menu li a {
  padding: 21px 12px;
  font-size: 15px;
}

.about-area .section-title {
  font-family: var(--font_montserrat);
  font-weight: 700;
}

/* Mobile/tablet static lockup (wrapper display:block ≤1199px only).
   style.css sets 80px @ ≤1399 — clips RATAKANAN at ~375px (~534px glyphs vs ~345px content).
   No GSAP/JS reads this font-size (unlike .big-text scale coupling). Fluid only here. */
@media only screen and (max-width: 1199px) {
  .about-area .section-title {
    font-size: clamp(40px, 12vw, 80px);
  }
}

/* Nav / labels */
.main-menu > ul > li > a,
.footer-nav-list a,
.rr-btn .btn-wrap,
.section-subtitle,
.menu-with-number li a {
  font-family: var(--font_montserrat);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Footer NAP columns — body case (not uppercase nav labels) */
.footer-area .footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-area .footer-contact-list li + li {
  margin-top: 12px;
}

.footer-area .footer-contact-list a,
.footer-area .footer-address {
  font-family: var(--font_inter);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  text-transform: none;
  letter-spacing: normal;
  text-decoration: none;
}

.footer-area .footer-contact-list a:hover {
  color: var(--color-accent-primary);
}

.footer-area .footer-address {
  margin: 0;
  max-width: 280px;
}

/* —— Accent usage ——
   Cyan (--color-accent-primary / --theme / --action): interactive default
   Lime (--color-accent-secondary): funfact counters only (rare, isolated)
   Large decorative fills → neutrals (never Cyan/Lime washes) */

.funfact-area .funfact-item .number {
  color: var(--color-accent-secondary);
}

/* Funfact stagger: Redox style.css tuned :not(:first-child) margin-top (195/155/115px)
   for a 5-item zigzag scroll stack. We ship 3 items — those gaps read as broken
   whitespace. Keep editorial zigzag (nth-child(2n) margin-left:auto from style.css);
   recalibrate vertical rhythm for 3. */
.funfact-area .funfact-item:not(:first-child) {
  margin-top: 88px;
}

@media only screen and (max-width: 1399px) {
  .funfact-area .funfact-item:not(:first-child) {
    margin-top: 72px;
  }
}

@media only screen and (max-width: 1199px) {
  .funfact-area .funfact-item:not(:first-child) {
    margin-top: 56px;
  }
}

@media only screen and (max-width: 991px) {
  .funfact-area .funfact-item:not(:first-child) {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .funfact-area .funfact-item:not(:first-child) {
    margin-top: 40px;
  }
}

/* Giant hero wordmark: Redox tuned font-size (690–920px) for 5-char "REDOX".
   "RATAKANAN" (9) overflowed (~4480px glyphs in ~1290px box) → unreadable clips.
   Fluid size so full lockup fits; scale GSAP end-state separately in main.js. */
.hero-area .big-text-wrapper {
  display: flex;
  justify-content: center;
  overflow: visible;
}

.hero-area .big-text {
  font-family: var(--font_montserrat);
  /* ~9ch × Montserrat Bold ≈ 0.72em → 11.5vw keeps RATAKANAN row inside viewport.
     STUDIO stacks on line 2 (desktop About heading uses this scaled .big-text;
     static .section-title with STUDIO is display:none ≥1200px). */
  font-size: clamp(64px, 11.5vw, 220px);
  letter-spacing: -0.02em;
  line-height: 0.9;
  white-space: nowrap;
  width: max-content;
  max-width: none;
  flex-direction: column;
  align-items: center;
  gap: 0.02em;
  /* Ghost start; opacity scrubbed → 1 by About top-center (see main.js) */
  opacity: 0.08;
}

.hero-area .big-text .rk-wordmark__name {
  display: block;
}

.hero-area .big-text .rk-wordmark__studio {
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.12em;
  line-height: 1;
}

@media only screen and (max-width: 1919px) {
  .hero-area .big-text {
    font-size: clamp(64px, 11.5vw, 200px);
  }
}

@media only screen and (max-width: 1399px) {
  .hero-area .big-text {
    font-size: clamp(56px, 11vw, 170px);
  }
}

/* —— Inner-page title (blog, and any future page-title-area page) ——
   Same Thunder→Montserrat width problem as .big-text above: style.css tunes
   .page-title to 495px for an ultra-condensed face, which overflows the
   container in Montserrat. Fluid instead. Width scales with word length:
   88vw / character count keeps any title the same optical width, so set
   --page-title-chars per page whenever the title isn't 4 characters. */
.page-title-wrapper .page-title {
  font-size: clamp(56px, calc(88vw / var(--page-title-chars, 4)), 420px);
  line-height: 0.85;
  max-width: 100%;
}

/* Article body headings: style.css sets weight 310 / line-height 0.7 for
   Thunder. Montserrat clips descenders at that leading and has no 310 weight. */
.blog-details-area .section-details .title {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* —— Core team rows (/tentang) ——
   Same Thunder metrics problem as the article headings: weight 310 and
   -0.07em tracking are unreadable in Montserrat at name sizes. */
.team-list-area .team-box .name {
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.team-list-area .team-box .post {
  font-family: var(--font_inter);
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* No team photography yet — initials stand in, reusing the client-chip
   monogram treatment. .thumb already supplies the 100px circle. */
.team-list-area .team-box .thumb--mono {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_montserrat);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  background-color: rgba(245, 245, 245, 0.08);
}

/* Redox sizes this grid for a 4th arrow-button column we don't ship. */
.team-list-area .team-box {
  grid-template-columns: 100px minmax(0, 1fr) minmax(0, 1.4fr);
}

/* Why Ratakanan reuses the numbered .services-wrapper-1 rows. Redox offsets
   .service-list under a multi-line sub-list; with one line it reads misaligned
   against the row title. */
.reason-area .services-wrapper-1 .service-box .service-list {
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  .team-list-area .team-box {
    grid-template-columns: 1fr;
  }

  .team-list-area .team-box .thumb {
    grid-column: auto;
  }
}

/* —— Contact block (/tentang) ——
   Redox's contact page ships a single .contact-mail; we stack three (email,
   phone, office), so they need separating. Same Thunder weight/tracking fix. */
.contact-area-contact-page .contact-mail + .contact-mail {
  margin-top: 40px;
}

.contact-area-contact-page .contact-mail .text {
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Brand lockup split: RATA (Cyan) + KANAN (Lime); STUDIO Soft White.
   Decorative/heading treatments only — NOT nav .brand-wordmark placeholder. */
.rk-wordmark__rata {
  color: var(--color-accent-primary);
}

.rk-wordmark__kanan {
  color: var(--color-accent-secondary);
}

.rk-wordmark__studio {
  color: var(--color-text);
}

/* Section index labels e.g. (01) — Cyan signature accent */
.services-wrapper-1 .service-box .count .number {
  color: var(--color-accent-primary);
}

/* Photographic grading (non-icon, non-SVG). Not for Karya Pilihan cards. */
.rk-photo {
  filter: grayscale(0.25) contrast(1.05) brightness(0.95);
}

.dark .cta-area-inner .area-bg {
  background-color: var(--color-bg-secondary);
}

/* CTA: template used line-height:20px + fontSize→18vw (fine for “Let’s Work”).
   Longer copy wraps and collapses. Keep unitless line-height; grow via scale in main.js. */
.cta-area .section-title {
  line-height: 1.05;
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  white-space: normal;
}

.cta-area .section-title a {
  display: inline-block;
}

/* Karya Pilihan homepage cards: not linked until /portfolio/[slug] exists */
.work-area .works-wrapper-1 .work-box,
.work-area .works-wrapper-1 .work-box .thumb,
.work-area .works-wrapper-1 .work-box .thumb .image,
.work-area .works-wrapper-1 .work-box .thumb img,
.work-area .works-wrapper-1 .work-box .title,
.work-area .works-wrapper-1 .work-box .meta {
  cursor: default !important;
}

/* Stock thumbs — consistent 16:10 crop + stylized Cyan treatment (mood, not documentary) */
.work-area .works-wrapper-1 .work-box .thumb .image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transform: none;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.work-area .works-wrapper-1 .work-box .thumb .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.85);
}

.work-area .works-wrapper-1 .work-box .thumb .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 184, 255, 0.18);
  mix-blend-mode: color;
  pointer-events: none;
  border-radius: inherit;
}

.work-area .works-wrapper-1 .work-box .meta span.tag {
  font-family: var(--font_inter);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  background: rgba(25, 184, 255, 0.1);
  padding: 3px 7px;
  border-radius: 4px;
  display: inline-block;
}

.work-area .works-wrapper-1 .work-box .meta span.tag:not(:first-child):before {
  display: none;
}

.work-area__ecosystem {
  margin-top: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  opacity: 0.85;
}

/* Philosophy: short display line + readable body (not a wall of giant type) */
.productivity-area .section-title {
  max-width: 920px;
}

/* Kill Redox hover “glitch” ornaments (shape-4/5/6 checkerboard pops via ::before).
   Also avoid word-anim/SplitText on this title — nested .shape-* spans get shredded. */
.productivity-area .section-title .shape-1:before,
.productivity-area .section-title .shape-2:before,
.productivity-area .section-title .shape-3:before {
  content: none !important;
  display: none !important;
}

.productivity-area__body {
  max-width: 42rem;
  margin: 2rem auto 0;
}

.productivity-area__body .text {
  font-family: var(--font_inter);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-secondary);
  text-transform: none;
  letter-spacing: normal;
}

.dark .hero-area,
.hero-area {
  background-color: var(--color-bg-secondary);
}

/* —— Neutralize leftover Redox orange / peach accents ——
   Original theme orange: #FA814D (CSS), #F86838 / #FC6838 (logo + shape rasters).
   Soft coral badge/peach surfaces: #FFA38E, #F9E6DC.
   Raster logo/shapes already recolored Soft White (#F5F5F5); CSS leftovers below. */

.main-menu .new,
.mobile-menu.mean-container .mean-nav .new,
.main-menu-2 .new {
  background: var(--color-text-secondary);
  color: var(--color-bg);
}

.header-area .sticky,
.header-area .transformed {
  background-color: var(--color-bg);
}

.dark .header-area .sticky,
.dark .header-area .transformed {
  background-color: var(--color-bg);
}

/* Alpine mobile nav — keep meanMenu visual language without the plugin */
.mobile-menu.mean-container .mean-nav > ul {
  display: block !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu.mean-container .mean-nav ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu.mean-container .mean-nav > ul > li {
  position: relative;
}

.site-chrome {
  display: contents;
}

/* Kill Redox capsule-era offsets (margin-left 545px etc.) — text stays readable */
.client-area .section-content .text-wrapper {
  margin-top: 28px !important;
  margin-left: 0 !important;
  max-width: 42rem !important;
}

.client-area .section-title {
  max-width: 18ch;
}

/* —— Client chips (static pills; no throwable) ——
   Explicit li + flex so Redox/Bootstrap list defaults cannot collapse to a
   mashed vertical text stack. */

.client-area .client-chips {
  margin-top: 48px;
  padding-bottom: 56px;
  width: 100%;
}

.client-area .client-chips__list {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 14px 14px;
  margin: 0;
  padding: 0;
  list-style: none !important;
  width: 100%;
}

.client-area .client-chips__item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none !important;
  width: auto;
  max-width: 100%;
}

.client-area .client-chip {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  background-color: var(--color-bg-secondary);
  border: 1px solid rgba(245, 245, 245, 0.14);
  line-height: 1;
  box-sizing: border-box;
  cursor: default;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.client-area .client-chip__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  transition: opacity 0.2s ease;
}

.client-area .client-chip__mono {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--font_montserrat);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  background-color: rgba(245, 245, 245, 0.08);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.client-area .client-chip__name {
  font-family: var(--font_montserrat);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  white-space: nowrap;
  transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .client-area .client-chip:hover {
    border-color: var(--color-accent-primary);
    background-color: rgba(25, 184, 255, 0.06);
    transform: translateY(-2px);
  }

  .client-area .client-chip:hover .client-chip__name {
    color: var(--color-text);
  }

  .client-area .client-chip:hover .client-chip__mono {
    color: var(--color-accent-primary);
    background-color: rgba(25, 184, 255, 0.12);
  }

  .client-area .client-chip:hover .client-chip__logo {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-area .client-chip,
  .client-area .client-chip__logo,
  .client-area .client-chip__mono,
  .client-area .client-chip__name {
    transition: none;
  }

  .client-area .client-chip:hover {
    transform: none;
  }
}

@media only screen and (max-width: 767px) {
  .client-area .client-chips {
    margin-top: 36px;
    padding-bottom: 40px;
  }

  .client-area .client-chips__list {
    gap: 10px;
  }

  .client-area .client-chip {
    padding: 10px 16px 10px 12px;
    gap: 10px;
  }

  .client-area .client-chip__logo,
  .client-area .client-chip__mono {
    width: 24px;
    height: 24px;
  }

  .client-area .client-chip__name {
    font-size: 11px;
  }
}

/*-----------------------------------------------------------------------------------
  Blog — share row

  Sits directly under the tag pills on article pages and reuses their shape
  (14px / 0 15px padding / 30px radius / var(--border)) so the two rows read as
  one block. Replaces the Redox comment form.
-----------------------------------------------------------------------------------*/

.blog-details-area .section-details .share-wrapper {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.blog-details-area .section-details .share-wrapper .heading {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--primary);
  display: inline-block;
}

.blog-details-area .section-details .share-links {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.blog-details-area .section-details .share-link {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--primary);
  background: none;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.blog-details-area .section-details .share-link:hover,
.blog-details-area .section-details .share-link:focus-visible,
.blog-details-area .section-details .share-link.is-copied {
  color: var(--color-accent-primary);
  border-color: var(--color-accent-primary);
}

.blog-details-area .section-details .share-link__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .blog-details-area .section-details .share-wrapper {
    flex-direction: column;
    gap: 12px;
  }
}

/*-----------------------------------------------------------------------------------
  About block without a hero (/tentang)

  Redox's `.about-area` is choreographed by the homepage hero: above 1199px
  style.css hides `.section-title-wrapper` and parks `.text-wrapper` at
  opacity:0 / translateY(100px), then main.js reveals it — but only inside
  `mm.add("(min-width: 1200px)")` guarded by `.hero-area` existing on the page.
  /tentang has no hero, so that reveal never runs and the whole block is
  invisible on desktop. This opts the section out of the scroll-driven state.
-----------------------------------------------------------------------------------*/

.about-area--static .section-title-wrapper {
  display: block;
  margin-bottom: 20px;
}

.about-area--static .section-content .text-wrapper {
  opacity: 1;
  transform: none;
}

/* Redox's about copy is a single paragraph, so it has no inter-paragraph rule. */
.about-area--static .section-content .text + .text {
  margin-top: 24px;
}
