/*
Theme Name: ESC Theme
Theme URI: https://ephramstcloud.eu
Author: ESC
Description: A lightweight WordPress theme inspired by ephramstcloud.eu.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: esc-theme
*/

:root {
  --esc-bg: #fbfbfd;
  --esc-card: #ffffff;
  --esc-text: #22212e;
  --esc-muted: #5f6070;
  --esc-primary: #232135;
  --esc-primary-dark: #11111d;
  --esc-border: #ededf1;
  --esc-input: #f3f3f4;
  --esc-footer: #2f2b46;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  color: var(--esc-text);
  background: var(--esc-bg);
  line-height: 1.6;
}

a {
  color: var(--esc-primary);
  text-decoration: none;
}

a:hover {
  color: var(--esc-primary-dark);
}

.esc-container {
  width: min(1240px, 90%);
  margin: 0 auto;
}

.site-header {
  background: #fff;
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 1.25rem;
}

.site-title {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: #000;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.site-logo-image {
  display: block;
  inline-size: min(231px, 100%);
  block-size: auto;
  max-inline-size: 100%;
}

.site-nav {
  display: block;
  min-width: 0;
  max-inline-size: 100%;
}

.site-nav-list {
  display: flex;
  gap: clamp(0.4rem, 1.25vw, 1.25rem);
  flex-wrap: nowrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.site-nav-list a {
  color: var(--esc-text);
  font-size: 0.95rem;
}

.site-nav-list .current-menu-item > a,
.site-nav-list .current_page_item > a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
}

.contact-hero {
  padding: 5rem 0 3rem;
}

.contact-page {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(5rem, 10vw, 8rem);
}

.contact-page .contact-intro h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.contact-page .contact-intro > p:not(.home-eyebrow) {
  max-width: 42rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-language-note {
  color: var(--esc-muted) !important;
  font-size: 0.95rem !important;
}

.contact-notice {
  max-width: 620px;
  margin: 2.5rem auto -1.75rem;
  padding: 1rem 1.2rem;
  border-inline-start: 3px solid var(--esc-primary);
  background: #fff;
  color: var(--esc-text);
}

.contact-notice-success {
  border-color: #187a4b;
}

.contact-notice-warning {
  border-color: #9d6700;
}

.contact-notice-error {
  border-color: #b3261e;
}

.blog-hero {
  padding: 4.5rem 0 2rem;
  text-align: center;
}

.blog-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.blog-hero p {
  margin: 0.75rem auto 0;
  max-width: 620px;
  color: var(--esc-muted);
}

/* ── Language switcher ─────────────────────────────────────── */
.menu-item-language {
  display: flex;
  align-items: center;
}

.lang-switcher {
  position: relative;
}

.lang-switcher > summary {
  list-style: none;
  font-size: 0.95rem;
  color: var(--esc-text);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.lang-switcher > summary::-webkit-details-marker {
  display: none;
}

.lang-switcher > summary::marker {
  display: none;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  background: #fff;
  border: 1px solid var(--esc-border);
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  min-width: 156px;
  z-index: 200;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
  color: var(--esc-text);
}

.lang-dropdown a:hover,
.lang-dropdown a[aria-current="true"] {
  font-weight: 600;
}

.lang-dropdown a[aria-current="true"] {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

/* ── Full-bleed dark hero banner ───────────────────────────── */
.page-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--esc-primary);
  color: #fff;
}

.page-hero-inner {
  width: min(1240px, 90%);
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.page-hero-inner h1 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.page-hero-inner p {
  margin: 1rem auto 0;
  max-width: 560px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

/* ── Editorial blog archive ────────────────────────────────── */
.blog-page-hero .page-hero-inner {
  padding-block: clamp(5rem, 12vw, 9rem);
}

.blog-page-hero .page-hero-inner h1 {
  max-inline-size: 14ch;
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 6.25rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.blog-page-hero .page-hero-inner p {
  max-inline-size: 45rem;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.blog-page-listing {
  width: min(1060px, 100%);
  margin-inline: auto;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.blog-page-listing .blog-grid {
  grid-template-columns: 1fr;
  gap: clamp(3.5rem, 8vw, 6.5rem);
}

.blog-page-listing .blog-card {
  border: 0;
  background: transparent;
}

.blog-page-listing .blog-card-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.blog-page-listing .blog-card-media {
  inline-size: 100%;
  block-size: clamp(18rem, 32vw, 39rem);
  padding: 3px;
  border: 1px solid #000;
  overflow: hidden;
  background: #fff;
}

.blog-page-listing .blog-card-media img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.blog-page-listing .blog-card-link:hover .blog-card-media img,
.blog-page-listing .blog-card-link:focus-visible .blog-card-media img {
  transform: scale(1.015);
}

.blog-page-listing .blog-card-content {
  max-inline-size: 55rem;
  padding: 0;
}

.blog-page-listing .blog-card-tags {
  margin-bottom: 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.09em;
}

.blog-page-listing .blog-card-title {
  font-size: clamp(2rem, 4.4vw, 4.15rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.blog-page-listing .blog-card-excerpt {
  max-inline-size: 52rem;
  margin-top: 1.2rem;
  color: var(--esc-muted);
  font-size: clamp(1.05rem, 1.75vw, 1.35rem);
  line-height: 1.5;
}

.blog-page-listing .blog-card-byline-author {
  margin-top: 1.5rem;
  color: var(--esc-text);
  font-size: 0.95rem;
  font-weight: 700;
}

.blog-page-listing .blog-card-byline {
  font-size: 0.95rem;
}

/* ── Single article ────────────────────────────────────────── */
article.single-post {
  max-inline-size: 1024px;
  margin: clamp(3rem, 8vw, 6rem) auto;
}

.single-post-header h1 {
  max-inline-size: 16ch;
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.single-post-featured-image {
  inline-size: min(1024px, 100%);
  margin: 0 auto;
}

.single-post-image-frame {
  aspect-ratio: 1200 / 775;
  padding: 3px;
  border: 1px solid #000;
  overflow: hidden;
  background: #fff;
}

.single-post-image-frame img {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.single-post-featured-image figcaption {
  margin-top: 3px;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #000;
  color: var(--esc-muted);
  font-size: 0.9rem;
}

.single-post-featured-image figcaption strong {
  color: var(--esc-text);
}

.single-post-excerpt {
  max-inline-size: 760px;
  margin: 1.5rem 0 0;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.3;
}

.single-post-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 1.5rem 0 clamp(2.5rem, 5vw, 4rem);
  color: var(--esc-muted);
  font-size: 0.95rem;
}

.post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.post-meta-item svg {
  inline-size: 1rem;
  block-size: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.single-post-content {
  max-inline-size: 760px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.single-post-content > :first-child {
  margin-top: 0;
}

.single-post-content h2,
.single-post-content h3 {
  margin-top: 2.5rem;
  line-height: 1.15;
}

.single-post-tags,
.single-post-share {
  max-inline-size: 760px;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--esc-border);
}

.single-post-tags h2,
.single-post-share h2 {
  display: inline;
  margin: 0 0.65rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
}

.single-post-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-post-tags ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-post-tags a,
.share-button {
  display: inline-flex;
  align-items: center;
  min-block-size: 2.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--esc-primary);
  color: var(--esc-primary);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.single-post-tags a {
  min-block-size: auto;
  padding: 0;
  border: 0;
  color: var(--esc-primary);
}

.share-button {
  justify-content: center;
  inline-size: 2.5rem;
  block-size: 2.5rem;
  min-block-size: 2.5rem;
  padding: 2px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.share-button img,
.share-button svg {
  display: block;
  inline-size: 1rem;
  block-size: 1rem;
}

.share-button img {
  filter: invert(1);
}

.share-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2.5;
}

.single-post-tags a:hover,
.share-button:hover,
.share-button:focus-visible {
  background: transparent;
  color: #707070;
}

.share-button:hover img,
.share-button:focus-visible img {
  filter: invert(45%);
}

/* ── Blog card enhancements ────────────────────────────────── */
.blog-card-tags {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--esc-muted);
}

.blog-card-byline-author {
  margin: 0.8rem 0 0.2rem;
  font-size: 0.88rem;
  color: var(--esc-muted);
}

.blog-card-byline {
  margin: 0;
  font-size: 0.88rem;
  color: var(--esc-muted);
}

.blog-listing {
  padding: 1.25rem 0 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--esc-border);
}

.blog-card-link {
  color: inherit;
  display: block;
  height: 100%;
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.15rem 1.15rem 1.4rem;
}

.blog-card-meta {
  margin: 0 0 0.45rem;
  color: var(--esc-muted);
  font-size: 0.88rem;
}

.blog-card-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  margin-top: 0.8rem;
  color: #3d3d49;
}

.blog-card-excerpt p {
  margin: 0;
}

.blog-card-readmore {
  display: inline-block;
  margin-top: 0.95rem;
  font-weight: 700;
}

.blog-pagination {
  margin-top: 2rem;
}

.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  border: 1px solid var(--esc-border);
  padding: 0.45rem 0.75rem;
  background: #fff;
}

.blog-pagination .page-numbers.current {
  background: #11111d;
  border-color: #11111d;
  color: #fff;
}

.contact-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.2;
}

.contact-intro p {
  margin: 0 auto 1.65rem;
  max-width: 620px;
  font-size: 0.95rem;
  color: var(--esc-text);
}

.contact-form {
  max-width: 620px;
  margin: 4.5rem auto 0;
}

.contact-page-form {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: #fff;
  border: 1px solid var(--esc-border);
}

.contact-form-plugin p {
  margin: 0 0 1.35rem;
}

.contact-form-plugin label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.contact-form-plugin input[type="text"],
.contact-form-plugin input[type="email"],
.contact-form-plugin textarea {
  width: 100%;
  border: 0;
  background: var(--esc-input);
  padding: 1rem 1.1rem;
  font: inherit;
  color: var(--esc-text);
}

.contact-form-plugin textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form-plugin input[type="submit"] {
  border: 0;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  padding: 1rem 2.75rem;
  min-width: 150px;
  border-radius: 999px;
  cursor: pointer;
}

.form-row {
  margin-bottom: 1.35rem;
}

.form-row label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 0;
  background: var(--esc-input);
  padding: 1rem 1.1rem;
  font: inherit;
  color: var(--esc-text);
}

.contact-page-form .form-row input,
.contact-page-form .form-row textarea {
  border: 1px solid transparent;
}

.contact-page-form .form-row input:focus,
.contact-page-form .form-row textarea:focus {
  outline: 0;
  border-color: var(--esc-primary);
}

.contact-social-fields {
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border: 0;
  border-top: 1px solid var(--esc-border);
}

.contact-social-fields legend {
  padding: 0;
  color: var(--esc-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1rem;
  margin-top: 1.25rem;
}

.contact-social-grid .form-row {
  margin-bottom: 1rem;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #b9b9bf;
}

.form-actions {
  text-align: center;
  padding-top: 1.5rem;
}

.submit-button {
  border: 0;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  padding: 1rem 2.75rem;
  min-width: 150px;
  border-radius: 999px;
  cursor: pointer;
}

.submit-button:hover {
  background: var(--esc-primary-dark);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: clamp(2.25rem, 10vw, 2.75rem);
  block-size: clamp(2.25rem, 10vw, 2.75rem);
  border-radius: 999px;
}

.social-links a img {
  display: block;
  inline-size: clamp(1.25rem, 6vw, 2rem);
  block-size: clamp(1.25rem, 6vw, 2rem);
  object-fit: contain;
}

.social-links a:hover img {
  opacity: 0.78;
}

.site-footer {
  margin-top: 2rem;
  background: var(--esc-footer);
  padding: 3rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.entry-content {
  background: #fff;
  border: 1px solid var(--esc-border);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.footer-brand {
  margin: 0 0 1rem;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.3rem, 3vw, 3.6rem);
}

.footer-brand-logo-wrap {
  font-size: 0;
  line-height: 1;
}

.footer-logo-image {
  display: inline-block;
  inline-size: min(231px, 100%);
  block-size: auto;
  max-inline-size: 100%;
  background: transparent;
  object-fit: contain;
  vertical-align: middle;
}

.footer-tagline,
.footer-copy {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.social-links-footer {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.social-links-footer a {
  color: #fff;
}

.social-links-footer a:hover {
  color: #fff;
}

/* Homepage */
.home-hero {
  position: relative;
  isolation: isolate;
  min-block-size: clamp(31rem, 56vw, 45rem);
  margin: 1.5rem 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background: #211b30;
}

.home-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(20, 14, 31, 0.9) 0%, rgba(25, 18, 36, 0.64) 46%, rgba(25, 18, 36, 0.08) 100%);
}

.home-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-block-size: inherit;
  inline-size: min(38rem, 90%);
  padding: clamp(2rem, 6vw, 5.5rem);
  color: #fff;
}

.home-eyebrow {
  margin: 0 0 1rem;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-eyebrow-dark {
  color: var(--esc-primary-dark);
}

.home-hero h1,
.home-manifesto h2,
.home-feature h2 {
  margin: 0;
  font-family: var(--esc-heading-font);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.home-hero h1 {
  max-inline-size: 12ch;
  font-size: clamp(3rem, 6.3vw, 5.75rem);
}

.home-hero-body {
  max-inline-size: 33rem;
  margin: 1.5rem 0 2rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.55;
}

.home-cta,
.home-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: fit-content;
  min-block-size: 3.1rem;
  padding: 0.8rem 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.home-cta {
  background: #fff;
  color: #221934;
}

.home-cta:hover,
.home-cta:focus-visible {
  background: var(--esc-primary);
  color: #fff;
}

.home-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.83fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 8rem);
  padding-block-end: clamp(4rem, 8vw, 7rem);
}

.home-manifesto-copy {
  max-inline-size: 42rem;
}

.home-manifesto h2,
.home-feature h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.home-manifesto-copy > p:not(.home-eyebrow) {
  max-inline-size: 38rem;
  margin: 1.6rem 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.home-quote {
  margin: 2.5rem 0 0;
  padding-inline-start: 1.25rem;
  border-inline-start: 3px solid var(--esc-primary);
}

.home-quote p {
  margin: 0;
  font-family: var(--esc-heading-font);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
}

.home-quote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  font-style: normal;
}

.home-manifesto-media {
  min-block-size: clamp(24rem, 42vw, 38rem);
  margin: 0;
  overflow: hidden;
  background: var(--esc-primary-dark);
}

.home-manifesto-media img {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  object-position: center;
}

.home-feature {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-block-end: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--esc-primary);
  color: #fff;
}

.home-feature h2 {
  max-inline-size: 16ch;
}

.home-feature p {
  max-inline-size: 39rem;
  margin: 1rem 0 0;
  line-height: 1.6;
}

.home-text-link {
  flex: 0 0 auto;
  border: 1px solid currentColor;
  color: #fff;
}

.home-text-link:hover,
.home-text-link:focus-visible {
  background: #fff;
  color: var(--esc-primary-dark);
}

@media (max-width: 980px) {
  .site-header-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .site-nav-list {
    justify-content: center;
    gap: clamp(0.65rem, 2vw, 1.25rem);
  }

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

  .contact-hero {
    padding-top: 3rem;
  }

  .home-manifesto {
    grid-template-columns: 1fr;
  }

  .home-manifesto-media {
    min-block-size: 25rem;
  }
}

@media (max-width: 620px) {
  html,
  body {
    overflow-x: hidden;
  }

  .esc-container {
    width: calc(100% - 2rem);
  }

  .site-header-inner {
    padding-block: 1rem;
  }

  .site-logo-image {
    inline-size: min(231px, 78vw);
  }

  .site-nav-list {
    gap: 0.55rem;
  }

  .site-nav-list a,
  .lang-switcher > summary {
    font-size: 0.82rem;
  }

  .lang-dropdown {
    right: 50%;
    transform: translateX(50%);
  }

  .home-hero {
    min-block-size: 37rem;
  }

  .home-hero::after {
    background: linear-gradient(0deg, rgba(20, 14, 31, 0.8) 0%, rgba(25, 18, 36, 0.48) 58%, rgba(25, 18, 36, 0.12) 100%);
  }

  .home-hero-overlay {
    inline-size: 100%;
    padding: 2rem;
  }

  .home-feature {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-manifesto-media {
    min-block-size: 20rem;
  }

  .contact-social-grid {
    grid-template-columns: 1fr;
  }

  .blog-page-listing .blog-card-link {
    grid-template-columns: 1fr;
  }

  .blog-page-listing .blog-card-media {
    block-size: min(85vw, 28rem);
  }

  article.single-post {
    margin-block: 2.5rem 4rem;
  }

  .single-post-byline {
    gap: 0.7rem;
  }

  .post-meta-item {
    flex-basis: 100%;
  }

  .single-post-tags h2 {
    display: block;
    margin-bottom: 0.6rem;
  }

  .single-post-tags ul {
    gap: 0.6rem;
  }

  .contact-page-form {
    padding: 1.25rem;
  }
}
