/*
Theme Name: serkan-kurt
Theme URI: https://example.com/serkan-kurt
Author: Codex
Author URI: https://example.com
Description: Türkçe öğretmenleri için modern editoryal, eski atlas ve kitap estetiğinde sade WordPress blog teması.
Version: 1.1.2
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: serkan-kurt
Tags: blog, education, custom-menu, featured-images, responsive-layout, translation-ready
*/

:root {
  --paper: #f4efdf;
  --paper-soft: #fbf8ee;
  --paper-deep: #e7dcc4;
  --ink: #211b16;
  --ink-soft: #5d5247;
  --earth: #8b6138;
  --gold: #b89657;
  --line: #cdbf9e;
  --line-dark: #9f8f72;
  --white: #fffdf6;
  --max: 1180px;
  --content: 760px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(244, 239, 223, .95), rgba(244, 239, 223, .95)),
    repeating-linear-gradient(90deg, rgba(139, 97, 56, .045) 0 1px, transparent 1px 36px),
    var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.76;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(139, 97, 56, .025) 17px 18px),
    linear-gradient(90deg, rgba(184, 150, 87, .06), transparent 18%, transparent 82%, rgba(139, 97, 56, .045));
  mix-blend-mode: multiply;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

a:hover {
  color: var(--earth);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  border-bottom: 1px solid var(--line);
  border-top: 4px double rgba(139, 97, 56, .38);
  background: rgba(251, 248, 238, .9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header__inner,
.site-footer__inner,
.site-main,
.archive-header {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 88px;
}

.site-branding {
  min-width: 180px;
}

.site-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.site-title a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.site-title a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--earth), transparent);
}

.site-description {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
  padding: 9px 12px;
  cursor: pointer;
}

.primary-navigation {
  justify-self: end;
}

.primary-navigation ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-navigation li {
  position: relative;
}

.primary-navigation a {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 14px 4px 14px 4px;
  color: var(--ink);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current-category-ancestor > a,
.primary-navigation .current-cat > a {
  border-color: rgba(139, 97, 56, .3);
  background: rgba(231, 220, 196, .42);
  color: var(--earth);
  box-shadow: inset 0 0 0 1px rgba(251, 248, 238, .55);
}

.primary-navigation .menu-icon {
  width: 1em;
  color: var(--gold);
  font-size: .88em;
  text-align: center;
}

.primary-navigation .menu-text {
  white-space: nowrap;
}

.primary-navigation .dropdown-indicator {
  margin-left: 2px;
  color: var(--earth);
  font-size: .74em;
}

.primary-navigation .sub-menu,
.primary-navigation .children {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 260px;
  display: block;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px 4px 18px 4px;
  background: var(--paper-soft);
  box-shadow: 0 16px 40px rgba(33, 27, 22, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu,
.primary-navigation li:hover > .children,
.primary-navigation li:focus-within > .children {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-navigation .sub-menu a,
.primary-navigation .children a {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 14px;
  white-space: nowrap;
}

.site-main {
  padding-block: clamp(24px, 4.5vw, 56px);
}

.home .site-main,
.front-page .site-main,
.blog .site-main {
  padding-top: clamp(12px, 2vw, 28px);
}

.home-intro,
.archive-header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(22px, 4vw, 44px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.home-intro.has-hero-image {
  min-height: var(--serkan-hero-height, 460px);
  align-items: center;
  overflow: visible;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  margin-top: 0;
  background-position: center;
  background-size: cover;
}

.home-intro.has-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 239, 223, .92), rgba(244, 239, 223, .72) 48%, rgba(33, 27, 22, .28)),
    linear-gradient(0deg, rgba(33, 27, 22, .16), transparent 42%);
  z-index: 0;
}

.home-intro.has-hero-image > * {
  position: relative;
  z-index: 1;
}

.home-intro.has-hero-image h1 {
  max-width: 720px;
  font-size: clamp(52px, 6vw, 86px);
  line-height: .92;
}

.home-intro.has-hero-image p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.home-intro.has-hero-image .atlas-note {
  background: rgba(251, 248, 238, .76);
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(159, 143, 114, .55);
  backdrop-filter: blur(4px);
}

.eyebrow,
.post-card__meta,
.single-meta,
.note-label {
  color: var(--earth);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-intro h1,
.archive-title,
.entry-title,
.page-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: .98;
}

.home-intro h1,
.archive-title {
  max-width: 820px;
  font-size: clamp(48px, 9vw, 108px);
}

.home-intro p,
.archive-description {
  margin: 12px 0 0;
  color: var(--ink-soft);
  max-width: 620px;
}

.quote-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(10px, 2vw, 18px);
  align-items: start;
  margin: clamp(14px, 2vw, 22px) 0 clamp(22px, 4vw, 38px);
  padding: clamp(13px, 2vw, 20px) clamp(16px, 3vw, 30px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(251, 248, 238, .82), rgba(231, 220, 196, .35)),
    repeating-linear-gradient(90deg, rgba(139, 97, 56, .035) 0 1px, transparent 1px 42px);
}

.quote-strip::before,
.quote-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 97, 56, .38), transparent);
}

.quote-strip::before {
  top: 5px;
}

.quote-strip::after {
  bottom: 5px;
}

.quote-strip__mark {
  color: rgba(184, 150, 87, .55);
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  line-height: .78;
}

.quote-strip__mark--end {
  align-self: end;
}

.quote-strip blockquote {
  margin: 0;
}

.quote-strip p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.25;
}

.quote-strip cite {
  display: block;
  margin-top: 9px;
  color: var(--earth);
  font-family: var(--ui);
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.atlas-note {
  border-left: 1px solid var(--line-dark);
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.post-card {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(251, 248, 238, .55);
  transition: border-color .18s ease, transform .18s ease;
}

.post-card::before,
.post-card::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
  opacity: .8;
}

.post-card::before {
  left: 10px;
  top: 10px;
  border-left: 1px solid rgba(139, 97, 56, .5);
  border-top: 1px solid rgba(139, 97, 56, .5);
}

.post-card::after {
  right: 10px;
  bottom: 10px;
  border-right: 1px solid rgba(139, 97, 56, .38);
  border-bottom: 1px solid rgba(139, 97, 56, .38);
}

.post-card:hover {
  border-color: var(--line-dark);
  transform: translateY(-2px);
}

.post-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.08) contrast(.96);
}

.post-card__image-placeholder,
.single-featured-image__placeholder {
  width: 100%;
  height: 100%;
}

.post-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 28px);
}

.post-card__category {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--earth);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.post-card__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.post-card__title a {
  text-decoration: none;
}

.post-card__excerpt {
  margin: 16px 0 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
}

.post-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.read-more {
  color: var(--ink);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.read-more::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: var(--earth);
}

.pagination,
.post-navigation,
.comments-pagination {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--ui);
  font-size: 14px;
}

.pagination .nav-links,
.post-navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.page-numbers,
.post-page-numbers {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 7px 11px;
  background: rgba(251, 248, 238, .45);
  text-decoration: none;
}

.page-numbers.current,
.post-page-numbers.current {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-soft);
}

.single-article,
.page-article {
  max-width: var(--content);
  margin-inline: auto;
}

.single-header,
.page-header {
  position: relative;
  margin-bottom: clamp(28px, 5vw, 52px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.entry-title,
.page-title {
  margin-top: 10px;
  font-size: clamp(48px, 8vw, 86px);
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
}

.single-featured-image {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.single-featured-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.single-featured-image__placeholder {
  aspect-ratio: 16 / 8;
}

.entry-content {
  font-size: clamp(17px, 2vw, 19px);
}

.single-article .entry-content > p:first-of-type::first-letter,
.page-article:not(.about-layout) .entry-content > p:first-of-type::first-letter {
  float: left;
  margin: .08em .12em 0 0;
  color: var(--earth);
  font-family: var(--serif);
  font-size: 4.2em;
  line-height: .78;
}

.entry-content > * {
  margin-top: 0;
  margin-bottom: 1.45em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.7em;
  margin-bottom: .55em;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.entry-content h2 {
  font-size: clamp(36px, 5vw, 52px);
}

.entry-content h3 {
  font-size: clamp(28px, 4vw, 38px);
}

.entry-content h4 {
  font-size: 24px;
}

.entry-content p {
  margin-bottom: 1.45em;
}

.entry-content a {
  color: var(--earth);
}

.entry-content blockquote {
  margin: 2em 0;
  padding: 8px 0 8px 24px;
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.18;
}

.entry-content cite {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-family: var(--ui);
  font-size: 13px;
  font-style: normal;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.entry-content hr {
  width: 100%;
  height: 1px;
  margin: 2.6em 0;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line-dark), transparent);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.35em;
}

.entry-content li + li {
  margin-top: .35em;
}

.entry-content figure,
.wp-block-image {
  margin: 2em 0;
}

.entry-content figcaption,
.wp-element-caption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-family: var(--ui);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .03em;
}

.entry-content .wp-block-pullquote {
  padding: 1.4em 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.entry-content sup,
.entry-content sub {
  font-family: var(--ui);
  font-size: .68em;
  line-height: 0;
}

.entry-content .wp-block-footnotes,
.entry-content .footnotes {
  margin-top: 3em;
  padding-top: 1.2em;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--ui);
  font-size: 13px;
  line-height: 1.65;
}

.related-posts {
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(48px, 8vw, 84px) auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.related-posts__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.related-posts h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.page-article.about-layout {
  max-width: var(--max);
}

.about-photo {
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-photo__placeholder {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--ink-soft);
  font-family: var(--ui);
  font-size: 13px;
  text-align: center;
}

.contact-panel {
  margin-top: clamp(30px, 5vw, 52px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-panel__note {
  margin-bottom: 24px;
  padding: 18px 0 18px 18px;
  border-left: 1px solid var(--line-dark);
  color: var(--ink-soft);
}

.contact-panel__note a {
  color: var(--ink);
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 650;
}

.contact-panel h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
}

.contact-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  font-family: var(--ui);
  font-size: 14px;
  line-height: 1.55;
}

.contact-notice--success {
  border-color: rgba(95, 111, 88, .65);
  background: rgba(95, 111, 88, .1);
}

.contact-notice--error {
  border-color: rgba(139, 97, 56, .65);
  background: rgba(139, 97, 56, .1);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form__field {
  margin: 0;
}

.contact-form__field--hidden {
  position: absolute;
  left: -9999px;
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--earth);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(251, 248, 238, .68);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--earth);
  box-shadow: 0 0 0 3px rgba(184, 150, 87, .18);
}

.contact-form__submit {
  justify-self: start;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-soft);
  padding: 12px 22px;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.contact-form__submit:hover {
  border-color: var(--earth);
  background: var(--earth);
}

.no-results {
  max-width: 680px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(251, 248, 238, .5);
}

.site-footer {
  clear: both;
  position: relative;
  margin-top: clamp(30px, 6vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(231, 220, 196, .45);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: min(220px, 46vw);
  height: 23px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, transparent, var(--line-dark), transparent) center / 100% 1px no-repeat,
    radial-gradient(circle, var(--gold) 0 2px, transparent 3px) center / 20px 20px repeat-x;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding-block: 38px;
  color: var(--ink-soft);
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 600;
}

.site-footer strong {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1;
}

.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(159, 143, 114, .55);
  padding: 8px 12px;
  background: rgba(251, 248, 238, .45);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  border-color: var(--earth);
  color: var(--earth);
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-navigation {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    padding-bottom: 18px;
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation ul {
    display: block;
  }

  .primary-navigation a {
    padding: 10px 0;
  }

  .primary-navigation .sub-menu,
  .primary-navigation .children {
    position: static;
    min-width: 0;
    display: block;
    padding: 0 0 0 18px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .home-intro,
  .archive-header,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .quote-strip {
    grid-template-columns: 1fr;
  }

  .quote-strip__mark {
    display: none;
  }

  .atlas-note {
    max-width: 560px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header__inner,
  .site-footer__inner,
  .site-main,
  .archive-header,
  .related-posts,
  .single-featured-image {
    width: min(100% - 28px, var(--max));
  }

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

  .post-card__footer,
  .site-footer__inner,
  .related-posts__header {
    display: block;
  }

  .read-more {
    display: inline-block;
    margin-top: 12px;
  }

  .entry-title,
  .page-title {
    font-size: clamp(42px, 14vw, 62px);
  }
}
