﻿/* ========================================
   MINCA — layout matched to design comps
   ======================================== */

@font-face {
  font-family: "ITC Fenice";
  src: url("../assets/static/ITC Fenice Bold.otf") format("opentype"),
    url("../fonts/ITCFeniceBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Noto Sans SC — self-hosted (latin + simplified Chinese) */
@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansSC/noto-sans-sc-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansSC/noto-sans-sc-chinese-simplified-400-normal.woff2")
    format("woff2");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/NotoSansSC/noto-sans-sc-latin-500-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/NotoSansSC/noto-sans-sc-chinese-simplified-500-normal.woff2")
    format("woff2");
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansSC/noto-sans-sc-latin-700-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansSC/noto-sans-sc-chinese-simplified-700-normal.woff2")
    format("woff2");
}

:root {
  --header-bg: #7697c1;
  --blue: #7396bf;
  --blue-line: #186ade;
  --blue-soft: #dce3e8;
  --blue-panel: #eef2f6;
  --navy: #000000;
  --charcoal: #111111;
  --black: #000000;
  --white: #ffffff;
  --gray-50: #f7f7f7;
  --gray-100: #f2f5f7;
  --gray-200: #dce3e8;
  --gray-400: #9aa8b3;
  --gray-500: #5b7282;
  --gray-600: #3d4f5c;
  --lavender: #ece8ef;
  --container: 1440px;
  --gutter: 60px;
  --font-serif: "ITC Fenice", "Times New Roman", Georgia, serif;
  --font-sans: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei",
    "寰蒋闆呴粦", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

a:hover {
  color: inherit;
}

.content-link:hover,
.wwd-row__body .link-arrow:hover,
.insights-head a:hover,
.download-left a:hover,
.download-app:hover {
  color: var(--blue-line);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.ph {
  background: linear-gradient(145deg, #c8ced6 0%, #9aa3af 55%, #b8bfc8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
}

.ph::after {
  content: attr(data-label);
}

.ph--dark {
  background: linear-gradient(145deg, #3a4250 0%, #1c222c 100%);
}

/* ========== Header（公共顶部 · 1440） ========== */
.site-header {
  background: var(--header-bg);
  color: var(--black);
  position: relative;
  z-index: 100;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 0 0;
  position: relative;
}

/* Logo: Goldman Sachs | Asset Management | MINCA — 定制细线 */
.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  width: fit-content;
  color: var(--black);
}

.logo-gs,
.logo-am {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--black);
  line-height: 1.05;
}

.logo-gs,
.logo-am {
  font-size: 22px;
  letter-spacing: 0.01em;
}

.logo-minca {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--black);
  margin-left: 4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  padding: 8px 0 10px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.nav a:hover,
.nav a.is-active {
  border-bottom-color: var(--black);
}

.menu-toggle {
  display: none;
  position: absolute;
  top: 36px;
  right: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: 0.25s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 90;
}
.nav-backdrop.is-visible {
  display: block;
}

/* ========== 首页板块1：视频 Banner ========== */
.hero-video {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: #1a2030;
}

.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 16, 28, 0.55) 0%,
    rgba(10, 16, 28, 0.28) 55%,
    rgba(10, 16, 28, 0.2) 100%
  );
  pointer-events: none;
}

.hero-video__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  color: var(--white);
}

.hero-video__title {
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 560px;
  margin-bottom: 16px;
  letter-spacing: 0;
}

.hero-video__sub {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  max-width: 420px;
  opacity: 0.95;
  font-weight: 400;
}

.hero-video__ctrl {
  position: absolute;
  right: 32px;
  bottom: 48px;
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  line-height: 0;
}

.hero-video__ctrl-icon {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.hero-video__ctrl[data-state="paused"] .hero-video__ctrl-icon--pause,
.hero-video__ctrl[data-state="playing"] .hero-video__ctrl-icon--play {
  display: none;
}

.hero-video__ctrl[data-state="paused"] .hero-video__ctrl-icon--play,
.hero-video__ctrl[data-state="playing"] .hero-video__ctrl-icon--pause {
  display: block;
}

/* ========== 首页板块2：Software Download ========== */
.download-section {
  background: var(--white);
  padding: 56px 0 0;
}

.download-section__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.download-section__label {
  margin: 0 0 28px;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}

.download-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.download-left,
.download-right {
  aspect-ratio: 5 / 4;
  min-height: 0;
}

.download-left {
  background-color: #9eb6d4;
  background-image: url("../assets/static/index-2-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--white);
  padding: 48px 72px 48px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.download-left h2 {
  font-family: var(--font-sans);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 14px;
  letter-spacing: 0;
}

.download-left p {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  max-width: 400px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.download-left a {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  width: fit-content;
}

.download-right {
  background: #eef3fc;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.download-apps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 72px;
  margin-bottom: 0;
  padding-top: 0;
}

.download-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
}

.download-app__icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.download-meta {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.download-foot {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.download-foot__text {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.download-foot__bar {
  width: 4px;
  height: 48px;
  background: #005bf5;
  flex-shrink: 0;
  margin-top: 2px;
}

.download-foot__body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--black);
}

.download-foot__lead {
  font-weight: 400;
  margin: 0;
}

.download-foot__more {
  font-weight: 400;
  margin: 0;
}

.download-foot__rule {
  display: block;
  width: 72px;
  height: 1px;
  background: var(--black);
  margin: 12px 0 10px;
}

.download-foot__copy {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #555;
  line-height: 1.4;
}

.qr-box {
  width: 108px;
  height: 108px;
  border: 1px solid #222;
  background: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}

.qr-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========== 首页板块3：Unlocking Client Success ========== */
.success-section {
  padding: 72px 0 96px;
  background: var(--white);
}

.success-section__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.success-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 0 80px;
  box-sizing: border-box;
}

.success-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.success-head h2 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--black);
}

.success-arrows {
  display: flex;
  gap: 8px;
}

.success-arrows__btn {
  width: 36px;
  height: 36px;
  background: #d9e3eb;
  color: #7a8b99;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.success-arrows__btn:hover {
  background: #c5d2de;
  color: var(--black);
}

.success-arrows__tri {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}

.success-arrows__tri--prev {
  border-width: 5px 8px 5px 0;
  border-color: transparent currentColor transparent transparent;
  margin-right: 2px;
}

.success-arrows__tri--next {
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 2px;
}

.success-row {
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  gap: 64px;
  align-items: center;
}

.success-row--flip {
  grid-template-columns: 1fr minmax(280px, 480px);
}

.success-row--flip .success-img {
  order: 2;
}

.success-row--flip .success-body {
  order: 1;
  justify-self: start;
}

.success-img {
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}

.success-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.success-body {
  max-width: 480px;
}

.success-tag {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.success-line {
  width: 56px;
  height: 5px;
  background: #005bf5;
  margin-bottom: 18px;
}

.success-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.success-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--black);
}

.success-desc p {
  margin: 0;
}

.success-desc p + p {
  margin-top: 10px;
}

/* ========== 首页板块4：Who We Are ========== */
.who-section {
  --who-img-h: 420px;
  --who-img-half: calc(var(--who-img-h) / 2);
  --who-bottom-gap: 56px;
  background: linear-gradient(
    to bottom,
    #20232a 0,
    #20232a calc(100% - var(--who-img-half) - var(--who-bottom-gap)),
    #ffffff calc(100% - var(--who-img-half) - var(--who-bottom-gap)),
    #ffffff 100%
  );
  color: var(--white);
  padding: 88px 0 var(--who-bottom-gap);
  position: relative;
}

.who-section__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.who-section__label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.85);
}

.who-section__title {
  width: 100%;
  max-width: 100%;
  margin-bottom: 48px;
  color: var(--white);
}

.who-section__title > *:first-child {
  margin-top: 0;
}

.who-section__title > *:last-child {
  margin-bottom: 0;
}

.who-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 40px;
  position: relative;
  z-index: 2;
}

.who-images img {
  width: 280px;
  height: var(--who-img-h);
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* ========== 首页板块5：What We Do ========== */
.wwd-home {
  padding: 64px 0 0;
  background: var(--white);
}

.wwd-home__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.wwd-home__title {
  margin: 0 0 28px;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--black);
}

.wwd-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wwd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 0;
}

.wwd-row__media,
.wwd-row__body {
  aspect-ratio: 5 / 3;
  box-sizing: border-box;
  min-height: 0;
}

.wwd-row__media {
  overflow: hidden;
  background: #ddd;
}

.wwd-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.wwd-row__body {
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-sans);
  overflow: auto;
}

.wwd-row__body--lavender {
  background: #f1ecf1;
}

.wwd-row__body--gray {
  background: #ebebeb;
}

.wwd-row__label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}

.wwd-row__body h3 {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0;
  color: var(--black);
  line-height: 1.25;
}

.wwd-row__body p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 28px;
}

.wwd-row__body .link-arrow {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  width: fit-content;
}

.wwd-row__body .link-arrow:hover {
  color: var(--blue-line);
}

/* ========== 首页板块6：Stay Ahead of Change ========== */
.insights-section {
  padding: 88px 0;
  background: var(--white);
}

.insights-section__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.insights-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.insights-head h2 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--black);
}

.insights-head a {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  color: var(--black);
}

.insights-head a:hover {
  color: var(--blue-line);
}

.insights-lead {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.9;
  color: var(--gray-600);
}

.insights-banner {
  width: 100%;
}

.insights-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.insights-banner .ph {
  width: 100%;
  height: 480px;
  min-height: 320px;
}

/* ========== 公共底部：Newsletter ========== */
.newsletter {
  background: #7297c4;
  color: var(--black);
  padding: 88px 0;
}

.newsletter__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.25;
}

.newsletter__sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  max-width: 560px;
  line-height: 1.65;
  color: var(--black);
}

.newsletter--center {
  text-align: center;
}

.newsletter--center .newsletter__sub {
  margin: 0 auto;
}

.newsletter--dark-text {
  color: var(--black);
}

/* ========== 公共底部：Footer ========== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 28px;
}

.site-footer__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr 0.7fr;
  gap: 32px 40px;
  margin-bottom: 56px;
  align-items: start;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 0.01em;
}

.footer-logo span {
  display: block;
}

.footer-logo span + span {
  margin-top: 2px;
  font-size: 18px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.footer-col a {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
  line-height: 1.35;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ========================================
   Our Firm page
   ======================================== */
/* 板块1：Our Purpose */
.firm-purpose {
  padding: 56px 0 72px;
  background: var(--white);
}

.firm-purpose__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.firm-purpose__label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.firm-purpose__title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.2vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 36px;
  letter-spacing: -0.015em;
  color: var(--black);
}

.firm-purpose__banner {
  width: 100%;
  margin-bottom: 48px;
  overflow: hidden;
}

.firm-purpose__banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.firm-purpose__mission {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.45;
  max-width: 960px;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0;
}

.values-section {
  padding: 0 0 80px;
  background: var(--white);
}

.values-section__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.values-section__title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
  color: var(--black);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  margin-bottom: 56px;
}

.value-item h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.value-item p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.75;
  margin: 0;
}

.values-section__media {
  width: 100%;
  overflow: hidden;
}

.values-section__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.principles-section {
  background: #f5f5f5;
  padding: 72px 0 64px;
}

.principles-section__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.principles-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.principles-head__label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.principles-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.principles-head > p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.7;
  margin: 0;
  padding-top: 28px;
}

.principles-viewport {
  overflow: hidden;
  width: 100%;
}

.principles-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.principle-card {
  flex: 0 0 calc((100% - 32px) / 2.4);
  background: var(--white);
  padding: 36px 32px;
  min-height: 280px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.principle-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.35;
  color: var(--black);
}

.principle-card p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.7;
  margin: 0;
}

.principles-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 28px;
}

.principles-nav__btn {
  width: 36px;
  height: 36px;
  background: #d9e3eb;
  color: #7a8b99;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.principles-nav__btn:hover {
  background: #c5d2de;
  color: var(--black);
}

.principles-nav__tri {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}

.principles-nav__tri--prev {
  border-width: 5px 8px 5px 0;
  border-color: transparent currentColor transparent transparent;
  margin-right: 2px;
}

.principles-nav__tri--next {
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 2px;
}

/* ========================================
   What We Do page
   ======================================== */
.wwd-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a2030;
  line-height: 0;
}

.wwd-hero__img {
  display: block;
  width: 100%;
  height: auto;
}

.wwd-hero__label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--white);
}

.wwd-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  max-width: 520px;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
}

.products-section {
  padding: 80px 0;
  background: var(--white);
}

.products-section__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.products-section__label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 12px;
  color: var(--black);
}

.products-section__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.product-img {
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}

.product-card {
  background: #f2f2f2;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.product-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--black);
  line-height: 1.3;
}

.product-card p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.7;
  margin: 0;
}

.product-card__body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.7;
}

.product-card__body p + p {
  margin-top: 12px;
}

.discover-section {
  background: var(--white);
  padding: 0 0 80px;
}

.discover-section__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.discover-section__text {
  padding: 72px 64px 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f1f2f6;
}

.discover-section__label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
}

.discover-section__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
  color: var(--black);
  letter-spacing: -0.01em;
  max-width: 420px;
}

.discover-section__text p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.75;
  max-width: 440px;
  margin: 0;
}

.discover-section__desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.75;
  max-width: 440px;
}

.discover-section__desc p {
  margin: 0;
  max-width: none;
}

.discover-section__desc p + p {
  margin-top: 12px;
}

.discover-section__media {
  overflow: hidden;
  background: #c5d4e8;
  min-height: 440px;
}

.discover-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 440px;
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  :root {
    --gutter: 24px;
  }

  .menu-toggle {
    display: flex;
  }

  .logo-group {
    margin-bottom: 0;
    padding-right: 48px;
  }

  .logo-gs,
  .logo-am {
    font-size: 18px;
  }

  .logo-minca {
    font-size: 28px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 28px 32px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 95;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    font-size: 16px;
    padding-bottom: 6px;
  }

  .hero-video {
    height: 420px;
  }

  .hero-video__title {
    font-size: 28px;
  }

  .hero-video__ctrl {
    bottom: 24px;
  }

  .download-split {
    grid-template-columns: 1fr;
  }

  .download-left,
  .download-right {
    aspect-ratio: auto;
  }

  .download-left {
    min-height: 360px;
    padding: 48px 40px 48px 48px;
  }

  .download-left h2 {
    font-size: 32px;
  }

  .download-right {
    padding: 40px 32px;
  }

  .download-apps {
    gap: 48px;
  }

  .success-row,
  .success-row--flip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .success-row--flip .success-img {
    order: 0;
  }

  .success-row--flip .success-body {
    order: 0;
  }

  .success-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 5 / 3;
  }

  .wwd-row {
    grid-template-columns: 1fr;
  }

  .wwd-row--reverse .wwd-row__media {
    order: -1;
  }

  .wwd-row__media {
    aspect-ratio: 5 / 3;
  }

  .wwd-row__body {
    aspect-ratio: auto;
    height: auto;
    padding: 40px 28px;
  }

  .insights-banner .ph {
    height: 280px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .principles-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .principles-head > p {
    padding-top: 0;
  }

  .principle-card {
    flex: 0 0 85%;
    min-height: 240px;
    padding: 28px 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .discover-section__inner {
    grid-template-columns: 1fr;
  }

  .discover-section__media {
    order: -1;
  }

  .discover-section__media img {
    min-height: 280px;
  }

  .discover-section__text {
    padding: 40px 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
  }

  .header-inner {
    padding: 24px 0 0;
  }

  .logo-group {
    gap: 10px;
  }

  .logo-gs,
  .logo-am {
    font-size: 16px;
  }

  .logo-minca {
    font-size: 24px;
    margin-left: 0;
  }

  .menu-toggle {
    top: 18px;
  }

  .hero-video {
    height: 360px;
  }

  .hero-video__title {
    font-size: 24px;
  }

  .hero-video__ctrl {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }

  .hero-video__ctrl-icon {
    width: 40px;
    height: 40px;
  }

  .download-apps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .download-left {
    padding: 40px 24px;
  }

  .download-left h2 {
    font-size: 28px;
  }

  .download-right {
    padding: 32px 20px;
  }

  .download-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-meta {
    font-size: 11px;
    line-height: 1.6;
  }

  .who-section {
    --who-img-h: 260px;
    --who-bottom-gap: 40px;
    padding-top: 56px;
  }

  .who-images {
    gap: 14px;
    padding-left: 20px;
  }

  .who-images img {
    width: 170px;
  }

  .who-section__title {
    margin-bottom: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========================================
   Focus / Instit pages
   ======================================== */
.page-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a2030;
  line-height: 0;
}

.page-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.page-banner--focus,
.page-banner--instit {
  background-image: none;
}

.page-banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.page-banner__content {
  color: var(--white);
  max-width: 680px;
}

.page-banner__content--left {
  text-align: left;
}

.page-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.page-banner__sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  max-width: 620px;
}

.focus-approach {
  padding: 72px 0 56px;
  background: var(--white);
}

.focus-approach__inner,
.focus-activity__inner,
.focus-framework__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
}

.focus-approach__title,
.focus-activity__title {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
}

.focus-activity__title {
  width: 100%;
}

.focus-framework__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
  line-height: 1.25;
}

.focus-approach__lead {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--black);
  margin: 0 0 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gray-200);
  max-width: 1100px;
}

.focus-approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 48px;
}

.focus-approach__item h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--black);
}

.focus-approach__item p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  margin: 0;
}

.focus-activity {
  padding: 24px 0 48px;
  background: var(--white);
}

.focus-activity__inner > p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--black);
  margin: 0 0 18px;
  max-width: none;
  width: 100%;
}

.focus-activity__list {
  margin: 8px 0 24px;
  padding-left: 1.25em;
  max-width: none;
  width: 100%;
}

.focus-activity__list li {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 10px;
}

.focus-chart {
  margin: 48px 0 28px;
  text-align: center;
}

.focus-chart img {
  width: 100%;
  max-width: 980px;
  height: auto;
  display: inline-block;
}

.focus-framework {
  padding: 64px 0 80px;
  background: #f1f2f6;
}

.focus-framework__lead {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--black);
  margin: 0 0 48px;
  max-width: 980px;
}

.focus-framework__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}

.focus-framework__col-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.focus-framework__item {
  padding: 22px 0;
  border-bottom: 1px solid #d5d7dc;
}

.focus-framework__item:last-child {
  border-bottom: none;
}

.focus-framework__item h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.focus-framework__item p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--black);
  margin: 0;
}

.instit-download {
  padding: 80px 0 72px;
  background: var(--white);
  text-align: center;
}

.instit-download__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.instit-download__title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
}

.instit-download__desc {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 auto 64px;
  max-width: 760px;
}

.instit-download__desc p {
  margin: 0;
}

.instit-download__desc p + p {
  margin-top: 12px;
}

.instit-download__apps {
  display: flex;
  justify-content: center;
  gap: 160px;
  margin-bottom: 64px;
}

.instit-download__app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--black);
}

.instit-download__app img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
}

.instit-download__name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
}

.instit-download__action {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
}

.instit-download__arrow {
  font-size: 18px;
  line-height: 1;
  margin-top: 4px;
}

.instit-download__note {
  font-family: var(--font-sans);
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--black);
}

.instit-download__meta {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--black);
  margin: 0;
}

.download-cta {
  background: #7297c4;
  padding: 72px 0;
}

.download-cta__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.download-cta__text {
  color: var(--black);
}

.download-cta__lead,
.download-cta__more {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.download-cta__copy {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  margin: 28px 0 0;
}

.download-cta__qr {
  width: 148px;
  height: 148px;
  border: 2px solid #111;
  background: transparent;
  flex-shrink: 0;
  overflow: hidden;
}

.download-cta__qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 960px) {
  .page-banner__inner,
  .focus-approach__inner,
  .focus-activity__inner,
  .focus-framework__inner,
  .download-cta__inner {
    padding: 0 32px;
  }

  .focus-approach__grid,
  .focus-framework__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .instit-download__apps {
    gap: 64px;
  }

  .download-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-banner__inner,
  .focus-approach__inner,
  .focus-activity__inner,
  .focus-framework__inner,
  .download-cta__inner {
    padding: 0 20px;
  }

  .instit-download__apps {
    flex-direction: column;
    gap: 40px;
  }

  .instit-download__app img {
    width: 88px;
    height: 88px;
  }
}

/* ========================================
   News and Media page
   ======================================== */
.news-page {
  background: var(--white);
}

.news-page__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 0 72px;
  box-sizing: border-box;
}

.news-page__title {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--black);
  margin: 0 0 36px;
  line-height: 1.15;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 32px 40px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 48px;
}

.news-filters__btn {
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  padding: 0 0 14px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}

.news-filters__btn.is-active {
  font-weight: 500;
  border-bottom-color: var(--black);
}

.news-filters__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 22px;
  padding: 0 8px;
  border-radius: 11px;
  background: #e8e8e8;
  font-size: 12px;
  font-weight: 400;
  color: #333;
  box-sizing: border-box;
}

.news-year-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px 40px;
  align-items: start;
  margin-bottom: 48px;
}

.news-year {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.2;
  padding-top: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
}

.news-item {
  padding: 22px 0 28px;
  border-top: 1px solid #ddd;
}

.news-item__cat {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 12px;
}

.news-item__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 16px;
  color: var(--black);
}

.news-item__title a:hover {
  color: var(--blue-line);
}

.news-item__date {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #888;
}

.news-item--award {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.news-item__main {
  flex: 1;
  min-width: 0;
}

.news-item__logo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0.01em;
}

.news-load {
  text-align: center;
  padding: 16px 0 40px;
}

.news-load__btn {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--black);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 40px;
  cursor: pointer;
  line-height: 1.2;
}

.news-load__btn:hover {
  background: var(--black);
  color: var(--white);
}

.news-conversation {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.news-conversation__text {
  background: #f0ebe7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 80px;
  box-sizing: border-box;
}

.news-conversation__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--black);
  margin: 0 0 18px;
  line-height: 1.25;
}

.news-conversation__sub {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  margin: 0;
  max-width: 420px;
}

.news-conversation__media {
  min-height: 420px;
  overflow: hidden;
  background: #ddd;
}

.news-conversation__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-item.is-hidden {
  display: none;
}

@media (max-width: 960px) {
  .news-page__inner {
    padding: 40px 24px 56px;
  }

  .news-year-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-year {
    padding-top: 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .news-conversation {
    grid-template-columns: 1fr;
  }

  .news-conversation__text {
    padding: 48px 32px;
  }

  .news-conversation__media {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .news-page__inner {
    padding: 32px 20px 48px;
  }

  .news-filters {
    gap: 16px 24px;
  }

  .news-filters__btn {
    font-size: 14px;
  }

  .news-item__title {
    font-size: 16px;
  }

  .news-conversation__text {
    padding: 40px 20px;
  }
}

/* ========================================
   News detail page
   ======================================== */
.news-detail {
  background: var(--white);
}

.news-detail__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 80px 72px;
  box-sizing: border-box;
}

.news-detail__cat {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 20px;
}

.news-detail__title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
  margin: 0 0 20px;
}

.news-detail__meta {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #666;
  margin: 0 0 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.news-detail__meta-sep {
  color: #999;
}

.news-detail__body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: #222;
}

.news-detail__body p {
  margin: 0 0 22px;
}

.news-detail__subhead {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin: 40px 0 20px;
  line-height: 1.3;
}

.news-detail__link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-detail__link:hover {
  color: var(--blue-line);
}

.news-detail__contact {
  margin-top: 40px;
}

.news-detail__contact p {
  margin: 0 0 6px;
}

.news-detail__footer-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 56px;
  padding-top: 8px;
}

.news-detail__back-top {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--black);
}

.news-detail__back-top:hover {
  color: var(--blue-line);
}

@media (max-width: 960px) {
  .news-detail__inner {
    padding: 48px 32px 56px;
  }
}

@media (max-width: 640px) {
  .news-detail__inner {
    padding: 36px 20px 48px;
  }

  .news-detail__title {
    font-size: 26px;
  }

  .news-detail__meta {
    margin-bottom: 32px;
  }
}
