/* Homepage header + hero redesign: full-bleed layout in Mershad's visual language. */
.top-shell {
  padding: 0;
  background: var(--primary-dark);
}
.top-shell .wide {
  position: relative;
  max-width: none;
}
.top-shell .site-header {
  position: absolute;
  z-index: 70;
  top: 18px;
  right: 20px;
  left: 20px;
  min-height: 80px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: linear-gradient(105deg, rgba(7, 26, 56, .86), rgba(18, 43, 89, .68));
  box-shadow: 0 18px 45px rgba(4, 15, 34, .22);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.top-shell .site-header .brand {
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.top-shell .brand-logo {
  width: 174px;
  max-height: 54px;
}
.top-shell .nav,
.top-shell .nav a {
  color: #fff;
}
.top-shell .nav a {
  position: relative;
  padding: 27px 0;
}
.top-shell .nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--logo);
  content: "";
  transition: width .25s ease;
}
.top-shell .nav a:hover,
.top-shell .nav a:focus-visible,
.top-shell .nav .current-menu-item > a,
.top-shell .nav a.active {
  color: #fff;
}
.top-shell .nav a:hover::after,
.top-shell .nav a:focus-visible::after,
.top-shell .nav .current-menu-item > a::after,
.top-shell .nav a.active::after {
  width: 100%;
}
.top-shell .header-left {
  gap: 14px;
}
.top-shell .header-social {
  gap: 7px;
}
.top-shell .social-icon {
  width: 40px;
  height: 40px;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .10);
  box-shadow: none;
}
.top-shell .social-icon img {
  filter: brightness(0) invert(1);
}
.top-shell .social-icon:hover,
.top-shell .social-icon:focus-visible {
  background: rgba(181, 168, 155, .30);
  outline: 0;
}
.top-shell .header-left > .btn {
  min-height: 46px;
  padding: 10px 22px;
  border-color: var(--logo);
  background: var(--logo);
  color: var(--primary-dark);
  box-shadow: 0 10px 26px rgba(4, 15, 34, .16);
}
.top-shell .header-left > .btn:hover,
.top-shell .header-left > .btn:focus-visible,
.top-shell .header-left > .btn.active {
  border-color: #fff;
  background: #fff;
  color: var(--primary-dark);
  outline: 0;
}
.top-shell .menu-toggle {
  border-color: rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .10);
  color: #fff;
}
.top-shell .hero,
.top-shell .hero-slide,
.top-shell .hero-inner {
  min-height: clamp(720px, 100svh, 900px);
}
.top-shell .hero {
  width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.top-shell .hero-slide::before {
  background:
    linear-gradient(270deg, rgba(7, 26, 56, .98) 0%, rgba(7, 26, 56, .92) 30%, rgba(18, 43, 89, .64) 58%, rgba(7, 26, 56, .18) 100%),
    var(--hero-slide-image) center / cover no-repeat;
}
.top-shell .hero-slide::after {
  background:
    radial-gradient(circle at 82% 28%, rgba(181, 168, 155, .24), transparent 27%),
    linear-gradient(0deg, rgba(7, 26, 56, .72) 0%, rgba(7, 26, 56, .06) 55%, rgba(7, 26, 56, .16) 100%);
}.top-shell .hero-slide {
  transform: scale(1.045);
  transition:
    opacity 1.55s cubic-bezier(.22, 1, .36, 1),
    transform 2.8s cubic-bezier(.22, 1, .36, 1);
}
.top-shell .hero-slide.is-active {
  transform: scale(1);
}
.top-shell .hero-slide.is-active::before {
  animation: mershad-hero-image-drift 11s cubic-bezier(.16, 1, .3, 1) both;
  transform-origin: center;
}
.top-shell .hero-slide .hero-content .eyebrow,
.top-shell .hero-slide .hero-content h1,
.top-shell .hero-slide .hero-content p,
.top-shell .hero-slide .hero-content .hero-actions {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 34px, 0);
  will-change: opacity, filter, transform;
}
.top-shell .hero-slide.is-active .hero-content .eyebrow {
  animation: mershad-hero-text-reveal 1.25s cubic-bezier(.16, 1, .3, 1) .28s both;
}
.top-shell .hero-slide.is-active .hero-content h1 {
  animation: mershad-hero-title-reveal 1.65s cubic-bezier(.16, 1, .3, 1) .46s both;
}
.top-shell .hero-slide.is-active .hero-content p {
  animation: mershad-hero-text-reveal 1.4s cubic-bezier(.16, 1, .3, 1) .82s both;
}
.top-shell .hero-slide.is-active .hero-content .hero-actions {
  animation: mershad-hero-text-reveal 1.25s cubic-bezier(.16, 1, .3, 1) 1.08s both;
}
@keyframes mershad-hero-image-drift {
  from { transform: scale(1.075); }
  to { transform: scale(1.015); }
}
@keyframes mershad-hero-text-reveal {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 34px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mershad-hero-title-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 42% 0);
    filter: blur(10px);
    transform: translate3d(0, 48px, 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}
.top-shell .hero-inner {
  align-items: center;
  justify-items: start;
  padding: 150px clamp(72px, 10vw, 190px) 100px;
  text-align: start;
}
.top-shell .hero-content {
  max-width: 720px;
  padding: 0;
}
.top-shell .hero .eyebrow {
  justify-content: flex-start;
  margin-bottom: 18px;
  color: var(--logo-soft);
  font-size: 15px;
}
.top-shell .hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(54px, 5.3vw, 92px);
  line-height: 1.12;
  letter-spacing: -1.8px;
  text-wrap: balance;
}
.top-shell .hero-content p {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.9;
}
.top-shell .hero-actions {
  justify-content: flex-start;
}
.top-shell .hero-actions .btn {
  min-height: 56px;
  padding: 12px 25px;
}
.top-shell .hero-actions .btn-solid {
  border-color: var(--logo);
  background: var(--logo);
  color: var(--primary-dark);
  box-shadow: 0 16px 34px rgba(4, 15, 34, .24);
}
.top-shell .hero-actions .btn-solid:hover,
.top-shell .hero-actions .btn-solid:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--primary-dark);
  outline: 0;
}
.top-shell .hero-actions .btn[href*="/contact"] {
  width: fit-content;
  gap: 14px;
  min-height: 58px;
  padding-block: 5px;
  padding-inline-start: 24px;
  padding-inline-end: 6px;
  border-color: var(--logo);
  border-radius: 999px;
  background: var(--logo);
  color: var(--primary-dark);
  font-size: 16px;
  box-shadow: none;
  backdrop-filter: none;
}
.top-shell .hero-actions .btn[href*="/contact"]::after {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  content: "\2197";
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  transition: transform .25s ease, background-color .25s ease;
}
.top-shell .hero-actions .btn[href*="/contact"]:hover,
.top-shell .hero-actions .btn[href*="/contact"]:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: none;
  outline: 0;
}
.top-shell .hero-actions .btn[href*="/contact"]:hover::after,
.top-shell .hero-actions .btn[href*="/contact"]:focus-visible::after {
  background: var(--primary);
  transform: translate(-2px, -2px);
}
.top-shell .hero-watermark {
  top: auto;
  right: auto;
  bottom: 54px;
  left: 7%;
  width: 310px;
  height: 310px;
  opacity: .055;
}
.top-shell .hero-arrows {
  top: 50%;
  right: 28px;
  bottom: auto;
  left: 28px;
  justify-content: space-between;
  transform: translateY(-50%);
}
.top-shell .hero-arrow {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 255, 255, .24);
  background: rgba(7, 26, 56, .28);
  box-shadow: 0 10px 30px rgba(4, 15, 34, .14);
}
.top-shell .hero-controls {
  bottom: 28px;
  gap: 8px;
}
.top-shell .hero-dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, .50);
}
.top-shell .hero-dot.is-active {
  width: 38px;
  background: var(--logo);
}
body.admin-bar .top-shell .site-header {
  top: 50px;
}
@media (max-width: 1200px) {
  .top-shell .site-header {
    top: 14px;
    right: 14px;
    left: 14px;
    min-height: 72px;
    padding: 0 20px;
  }
  .top-shell .site-header.is-menu-open {
    background: rgba(7, 26, 56, .96);
  }
  .top-shell .site-header.is-menu-open .nav {
    padding: 8px 0 16px;
  }
  .top-shell .site-header.is-menu-open .nav a {
    padding: 10px 4px;
  }
  .top-shell .site-header.is-menu-open .nav a::after {
    bottom: 4px;
  }
  .top-shell .hero-inner {
    padding: 138px 72px 92px;
  }
  .top-shell .hero-content {
    max-width: 670px;
  }
}
@media (max-width: 782px) {
  body.admin-bar .top-shell .site-header {
    top: 60px;
  }
}
@media (max-width: 760px) {
  .top-shell .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    min-height: 66px;
    padding: 0 14px;
    border-radius: 15px;
  }
  .top-shell .brand-logo {
    width: 142px;
    max-height: 44px;
  }
  .top-shell .menu-toggle {
    width: 44px;
    height: 44px;
  }
  .top-shell .hero,
  .top-shell .hero-slide,
  .top-shell .hero-inner {
    min-height: max(660px, 100svh);
  }
  .top-shell .hero-slide::before {
    background:
      linear-gradient(270deg, rgba(7, 26, 56, .97) 0%, rgba(7, 26, 56, .88) 52%, rgba(7, 26, 56, .48) 100%),
      var(--hero-slide-image) center / cover no-repeat;
  }
  .top-shell .hero-inner {
    align-items: center;
    padding: 118px 24px 88px;
  }
  .top-shell .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1.18;
    letter-spacing: -.8px;
  }
  .top-shell .hero-content p {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.85;
  }
  .top-shell .hero-actions {
    align-items: stretch;
  }
  .top-shell .hero-actions .btn {
    min-height: 54px;
  }
  .top-shell .hero-watermark {
    display: none;
  }
  .top-shell .hero-controls {
    bottom: 22px;
  }
}
/* Homepage about section: editorial grid inspired by the supplied reference. */
#about.section {
  padding: 104px 0;
  background: #eef1f1;
}
#about > .container {
  width: min(1320px, calc(100% - 56px));
}
#about .about-grid {
  display: grid;
  grid-template-columns: minmax(400px, 480px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
#about .about-copy {
  display: flex;
  min-width: 0;
  min-height: 650px;
  grid-column: 2;
  grid-row: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 4px 0 0;
}
#about .about-copy .kicker {
  order: 1;
  width: fit-content;
  margin: 0 0 20px;
  padding: 5px 12px;
  border-radius: 4px;
  background: #fff;
  color: var(--logo-dark);
  font-size: 13px;
  letter-spacing: .08em;
}
#about .about-copy .kicker::before {
  display: none;
}
#about .about-copy h2 {
  max-width: 900px;
  order: 2;
  margin: 0;
  color: #0b2025;
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -1.8px;
  text-wrap: balance;
}
#about .about-copy > p {
  max-width: 780px;
  order: 3;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}
#about .about-copy > .btn {
  min-height: 42px;
  order: 4;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-dark);
  box-shadow: none;
}
#about .about-copy > .btn::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  content: "\2197";
  font-family: Arial, sans-serif;
  font-size: 14px;
}
#about .about-copy > .btn:hover,
#about .about-copy > .btn:focus-visible {
  border: 0;
  background: transparent;
  color: var(--blue-deep);
  box-shadow: none;
  outline: 0;
  transform: none;
}
#about .about-list {
  display: grid;
  width: 100%;
  order: 5;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: auto 0 0;
}
#about .about-item {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(18, 43, 89, .06);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 14%, rgba(181, 168, 155, .12), transparent 24%),
    #fff;
  box-shadow: none;
}
#about .about-item::before {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
#about .about-item:nth-child(1)::before {
  content: "01.";
}
#about .about-item:nth-child(2)::before {
  content: "02.";
}
#about .check {
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0;
  place-items: center;
  border-radius: 50%;
  background: #eef1f1;
  color: var(--blue);
  font-size: 0;
}
#about .check::before {
  content: "\2713";
  font-size: 27px;
  font-weight: 600;
}
#about .about-item > div:last-child {
  width: 100%;
}
#about .about-item strong {
  margin-bottom: 12px;
  color: var(--logo-dark);
  font-size: 16px;
  font-weight: 600;
}
#about .about-item span {
  max-width: 440px;
  margin: 0;
  color: #0b2025;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1.4;
}
#about .about-image {
  min-height: 720px;
  grid-column: 1;
  grid-row: 1;
  border-radius: 12px;
  background-position: center;
  box-shadow: none;
}
#about .about-badge {
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 16px;
  border: 0;
  border-radius: 10px;
  background: rgba(7, 26, 56, .88);
  color: #fff;
  backdrop-filter: blur(12px);
}
#about .about-badge strong {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
}
@media (max-width: 1100px) {
  #about .about-grid {
    grid-template-columns: 1fr;
  }
  #about .about-copy,
  #about .about-image {
    min-height: auto;
    grid-column: 1;
  }
  #about .about-copy {
    grid-row: 1;
  }
  #about .about-list {
    margin-top: 50px;
  }
  #about .about-image {
    min-height: 460px;
    grid-row: 2;
    background-position: center 32%;
  }
}
@media (max-width: 760px) {
  #about.section {
    padding: 72px 0;
  }
  #about > .container {
    width: min(100% - 28px, 1320px);
  }
  #about .about-copy h2 {
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: -.7px;
  }
  #about .about-copy > p {
    font-size: 15px;
  }
  #about .about-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 40px;
  }
  #about .about-item {
    min-height: 280px;
    padding: 24px;
  }
  #about .about-item::before {
    top: 22px;
    right: 24px;
  }
  #about .check {
    top: 22px;
    left: 24px;
    width: 58px;
    height: 58px;
  }
  #about .about-item span {
    font-size: 25px;
  }
  #about .about-image {
    min-height: 380px;
  }
}
/* Premium sticky services showcase. */
#services.services-showcase {
  position: relative;
  overflow: visible;
  padding: 120px 0 190px;
  background: #eef1f1;
}
#services.services-showcase > .container {
  width: min(100% - 48px, 1296px);
  max-width: none;
}
#services .section-head {
  display: block;
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}
#services .section-head > div { width: 100%; }
#services .section-head .kicker { justify-content: center; }
#services .section-head h2 {
  max-width: 760px;
  margin-inline: auto;
  color: #0b2025;
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -1.5px;
}
#services .services-intro {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}
#services .services-grid {
  display: block;
  max-width: 1296px;
  margin: 0 auto;
  padding-bottom: 90px;
}
#services .service-card {
  position: sticky;
  z-index: var(--service-stack-order);
  top: calc(88px + var(--service-stack-offset));
  display: grid;
  min-height: clamp(520px, calc(100svh - 150px), 590px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 140px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--primary-dark);
  box-shadow: 0 18px 55px rgba(7, 26, 56, .14);
  color: #fff;
  counter-increment: none;
  transform-origin: center top;
  transition: opacity .65s ease, filter .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}
#services .service-card:last-of-type { margin-bottom: 0; }
#services .service-card::after { content: none; }
#services .service-card:hover {
  border-color: transparent;
  box-shadow: 0 18px 55px rgba(7, 26, 56, .14);
  transform: none;
}
#services .service-card.is-past {
  opacity: .28;
  filter: saturate(.55);
  transform: translateY(-18px) scale(.965);
}
#services .service-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 58px 62px 60px;
  background: radial-gradient(circle at 88% 10%, rgba(181, 168, 155, .13), transparent 28%), var(--primary-dark);
}
#services .service-card__icon {
  display: grid;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  place-items: center;
  border: 1px solid rgba(181, 168, 155, .14);
  border-radius: 50%;
  background: rgba(181, 168, 155, .08);
}
#services .service-card__icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
#services .service-card__body {
  margin-top: 42px;
  padding-top: 0;
}
#services .service-card__number {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .42);
  font-size: 16px;
  font-weight: 700;
}
#services .service-card__title,
#services .service-card h3 {
  max-width: 500px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -.8px;
}
#services .service-sub-items {
  display: grid;
  max-width: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  margin: 0;
}
#services .service-sub-items li {
  min-width: 0;
  padding: 11px 20px 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: transparent;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.65;
}
#services .service-sub-items li::before {
  right: 3px;
  width: 6px;
  height: 6px;
  background: var(--logo);
  opacity: .72;
}
#services .service-sub-items li:hover {
  background: transparent;
  color: #fff;
}
#services .service-card__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #d9dfdf;
}
#services .service-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(7, 26, 56, .18));
  content: "";
  pointer-events: none;
}
#services .service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(.96);
  transform: scale(1.02);
  transition: filter .8s ease, transform 1.2s cubic-bezier(.22, 1, .36, 1);
}
#services .service-card:not(.is-past):hover .service-card__media img {
  filter: saturate(1) contrast(1);
  transform: scale(1.055);
}
.services-scroll-progress {
  --services-progress: 0deg;
  position: fixed;
  z-index: 40;
  inset-inline-end: 32px;
  bottom: 32px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--blue) var(--services-progress), #fff 0);
  box-shadow: 0 10px 28px rgba(7, 26, 56, .16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.92);
  transition: opacity .3s ease, transform .3s ease;
}
.services-scroll-progress::before {
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #fff;
  content: "";
}
.services-scroll-progress span {
  position: relative;
  z-index: 1;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}
.services-scroll-progress.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (max-width: 1050px) {
  #services .service-card__content { padding: 46px 42px 48px; }
  #services .service-card__body { margin-top: 34px; padding-top: 0; }
  #services .service-sub-items { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  #services.services-showcase { padding: 84px 0; }
  #services.services-showcase > .container { width: min(100% - 28px, 760px); }
  #services .section-head { margin-bottom: 44px; }
  #services .service-card,
  #services .service-card.is-past {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
    opacity: 1;
    filter: none;
    transform: none;
  }
  #services .service-card__media {
    min-height: 320px;
    grid-column: 1;
    grid-row: 1;
  }
  #services .service-card__content {
    grid-column: 1;
    grid-row: 2;
  }
  #services .services-grid { padding-bottom: 0; }
  .services-scroll-progress { display: none; }
}
@media (max-width: 600px) {
  #services .section-head h2 { font-size: 36px; }
  #services .service-card { border-radius: 14px; }
  #services .service-card__media { min-height: 240px; }
  #services .service-card__content { padding: 30px 24px 34px; }
  #services .service-card__icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }
  #services .service-card__icon img {
    width: 34px;
    height: 34px;
  }
  #services .service-card__body { margin-top: 34px; padding-top: 0; }
  #services .service-card__title,
  #services .service-card h3 { font-size: 29px; }
}
/* Moving Masharef issues carousel. */
#masharef.masharef-showcase {
  overflow: hidden;
  padding: 112px 0 100px;
  background: #eef1f1;
}
#masharef .masharef-showcase__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 58px;
}
#masharef .masharef-showcase__head > div { max-width: 760px; }
#masharef .masharef-showcase__head h2 {
  margin: 8px 0 0;
  color: var(--primary-dark);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -1.2px;
}
#masharef .masharef-showcase__head p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}
#masharef .masharef-showcase__head .btn {
  flex: 0 0 auto;
  border-color: rgba(18, 43, 89, .18);
  background: #fff;
}
.masharef-carousel { position: relative; }
.masharef-carousel__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  direction: ltr;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.masharef-carousel__viewport.is-dragging { cursor: grabbing; }
.masharef-carousel__viewport::before,
.masharef-carousel__viewport::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: clamp(24px, 5vw, 96px);
  content: "";
  pointer-events: none;
}
.masharef-carousel__viewport::before {
  left: 0;
  background: linear-gradient(90deg, #eef1f1, transparent);
}
.masharef-carousel__viewport::after {
  right: 0;
  background: linear-gradient(270deg, #eef1f1, transparent);
}
.masharef-carousel__track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 28px;
  padding: 0 16px;
  direction: ltr;
  will-change: transform;
}
.masharef-carousel__track.is-ready { visibility: visible; }
.masharef-issue-card {
  display: flex;
  width: clamp(310px, 23vw, 430px);
  flex: 0 0 clamp(310px, 23vw, 430px);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(18, 43, 89, .08);
  border-radius: 14px;
  background: var(--primary-dark);
  color: #fff;
  direction: rtl;
  text-decoration: none;
  transition: border-color .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}
.masharef-issue-card:hover,
.masharef-issue-card:focus-visible {
  border-color: rgba(181, 168, 155, .56);
  color: #fff;
  outline: 0;
  transform: translateY(-7px);
}
.masharef-issue-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.08 / 1;
  background: #dce1e1;
}
.masharef-issue-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(.96);
  transform: scale(1.015);
  transition: filter .6s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
}
.masharef-issue-card:hover .masharef-issue-card__image img,
.masharef-issue-card:focus-visible .masharef-issue-card__image img {
  filter: saturate(1) contrast(1);
  transform: scale(1.06);
}
.masharef-issue-card__body {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px 27px;
}
.masharef-issue-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--logo-soft);
  font-size: 13px;
}
.masharef-issue-card__meta small {
  padding-inline-start: 10px;
  border-inline-start: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
}
.masharef-issue-card__body strong {
  color: #fff;
  font-size: clamp(22px, 1.65vw, 29px);
  font-weight: 600;
  line-height: 1.42;
}
.masharef-carousel__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}
.masharef-carousel__progress span {
  display: block;
  width: 10px;
  height: 8px;
  border-radius: 999px;
  background: rgba(18, 43, 89, .12);
}
.masharef-carousel__progress span.is-active {
  position: relative;
  width: 68px;
  overflow: hidden;
  background: rgba(18, 43, 89, .14);
}
.masharef-carousel__progress span.is-active::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--logo);
  content: "";
  transform-origin: right;
  animation: mershad-masharef-progress 5s ease-in-out infinite alternate;
}

@keyframes mershad-masharef-progress {
  from { transform: scaleX(.18); }
  to { transform: scaleX(1); }
}
@media (max-width: 900px) {
  #masharef.masharef-showcase { padding: 82px 0 74px; }
  #masharef .masharef-showcase__head {
    display: block;
    margin-bottom: 42px;
  }
  #masharef .masharef-showcase__head .btn { margin-top: 22px; }
  .masharef-carousel__track {
    gap: 18px;
    padding-inline: 14px;
  }
  .masharef-issue-card {
    width: min(82vw, 360px);
    flex-basis: min(82vw, 360px);
  }
}
@media (max-width: 520px) {
  #masharef .masharef-showcase__head h2 { font-size: 36px; }
  .masharef-issue-card__body {
    min-height: 142px;
    padding: 21px 22px 24px;
  }
  .masharef-issue-card__body strong { font-size: 23px; }
}
/* Homepage articles carousel. */
#articles.articles-showcase {
  overflow: hidden;
  padding: 112px 0 104px;
  background: #eef1f1;
}
.articles-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .72fr) auto;
  align-items: end;
  gap: clamp(30px, 5vw, 76px);
  margin-bottom: 48px;
}
.articles-showcase__title .kicker {
  display: inline-flex;
  margin-bottom: 22px;
}
.articles-showcase__title h2 {
  max-width: 680px;
  margin: 0;
  color: var(--primary-dark);
  font-size: clamp(40px, 4.2vw, 66px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.12;
}
.articles-showcase__intro {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}
.articles-showcase__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.articles-all-link {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.articles-showcase__nav {
  display: flex;
  direction: rtl;
  gap: 12px;
}
.articles-showcase__nav button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(18, 43, 89, .18);
  border-radius: 50%;
  background: transparent;
  color: var(--primary-dark);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  transition: border-color .25s ease, background-color .25s ease, color .25s ease;
}
.articles-showcase__nav button:hover,
.articles-showcase__nav button:focus-visible {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  color: #fff;
  outline: none;
}
.articles-carousel__viewport {
  overflow: hidden;
  direction: ltr;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.articles-carousel__viewport.is-dragging { cursor: grabbing; }
.articles-carousel__track {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 28px;
  direction: ltr;
  will-change: transform;
  transition: transform .75s cubic-bezier(.22, 1, .36, 1);
}
.home-article-card {
  display: grid;
  min-height: 368px;
  flex: 0 0 calc((100% - 28px) / 2);
  grid-template-columns: minmax(230px, .96fr) minmax(0, 1.04fr);
  overflow: hidden;
  border: 1px solid rgba(18, 43, 89, .06);
  border-radius: 15px;
  background: #fff;
  direction: ltr;
}
.home-article-card__image {
  position: relative;
  display: block;
  min-height: 368px;
  overflow: hidden;
  background: #dce1e1;
}
.home-article-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 43, 89, .06), rgba(18, 43, 89, .2));
  content: "";
  pointer-events: none;
}
.home-article-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(.95);
  transition: filter .55s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}
.home-article-card:hover .home-article-card__image img {
  filter: saturate(1) contrast(1);
  transform: scale(1.045);
}
.home-article-card__date {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: flex;
  min-width: 76px;
  min-height: 88px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 7px;
  background: rgba(18, 43, 89, .5);
  color: #fff;
  backdrop-filter: blur(10px);
}
.home-article-card__date strong {
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
}
.home-article-card__date small {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 700;
}
.home-article-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px 30px;
  direction: rtl;
  text-align: right;
}
.home-article-card__tag {
  display: inline-flex;
  padding: 4px 10px;
  border: 1px solid rgba(18, 43, 89, .17);
  border-radius: 4px;
  color: var(--primary-dark);
  font-size: 12px;
  line-height: 1;
}
.home-article-card__body h3 {
  margin: 21px 0 12px;
  color: var(--primary-dark);
  font-size: clamp(23px, 1.75vw, 30px);
  font-weight: 600;
  line-height: 1.42;
}
.home-article-card__body h3 a {
  color: inherit;
  text-decoration: none;
}
.home-article-card__body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.articles-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.articles-read-more span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  font-size: 14px;
}
.articles-carousel__dots {
  display: flex;
  min-height: 10px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 45px;
  direction: ltr;
}
.articles-carousel__dots button {
  width: 11px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 43, 89, .13);
  cursor: pointer;
  transition: width .35s ease, background-color .35s ease;
}
.articles-carousel__dots button.is-active {
  width: 64px;
  background: var(--logo);
}
@media (max-width: 1100px) {
  .articles-showcase__head {
    grid-template-columns: 1fr 1fr;
  }
  .articles-showcase__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .home-article-card {
    min-height: 350px;
    grid-template-columns: minmax(190px, .88fr) minmax(0, 1.12fr);
  }
  .home-article-card__image { min-height: 350px; }
  .home-article-card__body { padding: 29px 24px 26px; }
  .home-article-card__body h3 { font-size: 23px; }
}
@media (max-width: 760px) {
  #articles.articles-showcase { padding: 78px 0 72px; }
  .articles-showcase__head {
    display: block;
    margin-bottom: 34px;
  }
  .articles-showcase__title h2 { font-size: 38px; }
  .articles-showcase__intro { margin-top: 18px; }
  .articles-showcase__actions {
    margin-top: 24px;
  }
  .home-article-card {
    min-height: 0;
    flex-basis: 100%;
    grid-template-columns: 1fr;
  }
  .home-article-card__image {
    min-height: 0;
    aspect-ratio: 1.35 / 1;
  }
  .home-article-card__body { min-height: 280px; }
  .articles-carousel__track { gap: 18px; }
  .articles-carousel__dots { margin-top: 30px; }
}
/* Homepage closing sections redesign. */
#publish.publish-showcase {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background: #eef1f1;
}
#publish .publish-cta {
  display: grid;
  min-height: 570px;
  grid-template-columns: minmax(0, 1.17fr) minmax(410px, .83fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--primary-dark);
  box-shadow: none;
}
#publish .publish-cta > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 6vw, 88px);
}
#publish .kicker {
  align-self: flex-start;
  color: var(--logo-soft);
}
#publish .kicker::before { background: var(--logo); }
#publish .publish-cta h2 {
  max-width: 760px;
  margin: 24px 0 18px;
  color: #fff;
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.18;
}
#publish .publish-cta p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
  line-height: 1.95;
}
#publish .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
#publish .hero-actions .btn {
  width: auto;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  box-shadow: none;
}
#publish .hero-actions .btn-solid {
  border-color: var(--logo);
  background: var(--logo);
  color: var(--primary-dark);
}
#publish .hero-actions .btn:hover,
#publish .hero-actions .btn:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--primary-dark);
  outline: none;
  transform: none;
}
#publish .publish-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, .055);
  counter-reset: publish-type;
}
#publish .publish-type {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 27px 25px;
  border: 0;
  border-radius: 10px;
  background: #f7f7f4;
  box-shadow: none;
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  counter-increment: publish-type;
  transition: background-color .3s ease, color .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}
#publish .publish-type::before {
  color: var(--logo-dark);
  content: "0" counter(publish-type);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
#publish .publish-type::after {
  width: 34px;
  height: 1px;
  margin-top: 28px;
  background: rgba(18, 43, 89, .24);
  content: "";
}
#publish .publish-type:hover {
  background: var(--logo);
  color: var(--primary-dark);
  transform: translateY(-5px);
}

#impact.impact-showcase {
  overflow: hidden;
  padding: 112px 0 118px;
  background: #f8f8f5;
  color: var(--primary-dark);
}
#impact .section-head {
  display: block;
  max-width: 820px;
  margin: 0 auto 62px;
  text-align: center;
}
#impact .section-head > div { max-width: none; }
#impact .kicker {
  display: inline-flex;
  color: var(--logo-dark);
}
#impact .section-head h2 {
  margin: 20px 0 16px;
  color: var(--primary-dark);
  font-size: clamp(42px, 4.4vw, 66px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.15;
}
#impact .section-head p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}
#impact .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(18, 43, 89, .13);
  border-bottom: 1px solid rgba(18, 43, 89, .13);
}
#impact .stat {
  position: relative;
  overflow: hidden;
  padding: 48px 28px 50px;
  border: 0;
  border-inline-start: 1px solid rgba(18, 43, 89, .13);
  border-radius: 0;
  background: transparent;
  text-align: right;
  transition: background-color .35s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}
#impact .stat:first-child { border-inline-start: 0; }
#impact .stat::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--logo);
  content: "";
  transition: width .45s cubic-bezier(.22, 1, .36, 1);
}
#impact .stat:hover {
  background: rgba(181, 168, 155, .1);
  transform: translateY(-4px);
}
#impact .stat:hover::after { width: 100%; }
#impact .stat strong {
  display: block;
  margin: 0 0 17px;
  color: var(--primary-dark);
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .95;
}
#impact .stat span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

#contact.newsletter-showcase {
  overflow: hidden;
  padding: 0 0 112px;
  background: #f8f8f5;
}
#contact .newsletter {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 6vw, 78px);
  border-radius: 16px;
  background: var(--primary-dark);
}
#contact .newsletter::before {
  position: absolute;
  top: 50%;
  left: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(181, 168, 155, .2);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}
#contact .newsletter::after {
  position: absolute;
  top: -90px;
  right: 42%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  content: "";
}
#contact .newsletter > * {
  position: relative;
  z-index: 1;
}
#contact .newsletter-box {
  overflow: visible;
  padding: 0;
  border-radius: 0;
  background: none;
  color: #fff;
}
#contact .newsletter-box .kicker {
  color: var(--logo-soft);
}
#contact .newsletter-box .kicker::before { background: var(--logo); }
#contact .newsletter-box h2 {
  margin: 22px 0 15px;
  color: #fff;
  font-size: clamp(40px, 3.8vw, 58px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.18;
}
#contact .newsletter-box p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 16px;
  line-height: 1.9;
}
#contact .newsletter-signup {
  display: grid;
  gap: 13px;
}
#contact .newsletter-form {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
#contact .newsletter-form input {
  min-width: 0;
  min-height: 56px;
  flex: 1;
  padding: 0 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  text-align: right;
}
#contact .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .52);
}
#contact .newsletter-form .btn {
  min-width: 138px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--logo);
  box-shadow: none;
  color: var(--primary-dark);
}
#contact .newsletter-form .btn:hover,
#contact .newsletter-form .btn:focus-visible {
  background: #fff;
  color: var(--primary-dark);
  outline: none;
  transform: none;
}
#contact .newsletter-message {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

@media (max-width: 1050px) {
  #publish .publish-cta {
    grid-template-columns: 1fr;
  }
  #publish .publish-types {
    min-height: 390px;
  }
  #contact .newsletter {
    grid-template-columns: 1fr;
  }
  #contact .newsletter-signup {
    max-width: 680px;
  }
}
@media (max-width: 760px) {
  #publish.publish-showcase { padding: 76px 0; }
  #publish .publish-cta {
    min-height: 0;
    border-radius: 12px;
  }
  #publish .publish-cta > div:first-child {
    padding: 42px 25px 38px;
  }
  #publish .publish-cta h2 {
    margin-top: 19px;
    font-size: 38px;
  }
  #publish .publish-cta p { font-size: 15px; }
  #publish .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  #publish .hero-actions .btn {
    width: 100%;
  }
  #publish .publish-types {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
  }
  #publish .publish-type {
    min-height: 142px;
    padding: 21px 18px;
    font-size: 15px;
  }
  #publish .publish-type::after { margin-top: 20px; }

  #impact.impact-showcase { padding: 78px 0 82px; }
  #impact .section-head { margin-bottom: 40px; }
  #impact .section-head h2 { font-size: 38px; }
  #impact .section-head p { font-size: 15px; }
  #impact .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  #impact .stat {
    padding: 34px 20px 35px;
    border-bottom: 1px solid rgba(18, 43, 89, .13);
  }
  #impact .stat:nth-child(odd) { border-inline-start: 0; }
  #impact .stat:nth-child(even) { border-inline-start: 1px solid rgba(18, 43, 89, .13); }
  #impact .stat:nth-last-child(-n + 2) { border-bottom: 0; }
  #impact .stat strong { font-size: 48px; }

  #contact.newsletter-showcase { padding-bottom: 76px; }
  #contact .newsletter {
    min-height: 0;
    gap: 34px;
    padding: 42px 24px;
    border-radius: 12px;
  }
  #contact .newsletter-box h2 {
    margin-top: 18px;
    font-size: 38px;
  }
  #contact .newsletter-form {
    flex-direction: column;
    border-radius: 12px;
  }
  #contact .newsletter-form input {
    min-height: 54px;
    text-align: right;
  }
  #contact .newsletter-form .btn {
    width: 100%;
  }
}
/* Compact publish types refinement. */
#publish .publish-cta { min-height: 500px; }
#publish .publish-types {
  min-height: 0;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 10px;
  padding: 34px;
}
#publish .publish-type {
  display: block;
  min-height: 0;
  padding: 19px 64px 19px 22px;
  border: 1px solid rgba(18, 43, 89, .08);
  border-radius: 8px;
  font-size: 16px;
}
#publish .publish-type::before {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
#publish .publish-type::after { display: none; }
#publish .publish-type:hover { transform: none; }
@media (max-width: 1050px) {
  #publish .publish-types {
    min-height: 0;
    padding: 24px;
  }
}
@media (max-width: 760px) {
  #publish .publish-cta { min-height: 0; }
  #publish .publish-types {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }
  #publish .publish-type {
    min-height: 0;
    padding: 16px 56px 16px 18px;
    font-size: 15px;
  }
}


