/* Artist Weekly homepage — faithful magazine layout */

:root {
  --aw-bg: #ffffff;
  --aw-dark: #0d0d0d;
  --aw-footer: #121212;
  --aw-text: #111111;
  --aw-muted: #666666;
  --aw-border: #dddddd;
  --aw-red: #c41e3a;
  --aw-red-dark: #9e1830;
  --aw-max: 78rem;
  --aw-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--aw-font) !important;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--aw-text) !important;
  background: var(--aw-bg) !important;
}

a {
  color: var(--aw-text);
  text-decoration: none;
}

a:hover {
  color: var(--aw-red);
}

/* —— Dark header —— */
.aw-header {
  background: var(--aw-dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='400'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23181818'/%3E%3Cstop offset='100%25' stop-color='%230d0d0d'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='400' fill='url(%23g)'/%3E%3C/svg%3E") center/cover no-repeat;
  border-bottom: none;
  position: relative;
  z-index: 200;
}

.aw-header__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--aw-max);
  margin: 0 auto;
  padding: 1rem 1.25rem 0.5rem;
}

.aw-header__brand {
  grid-column: 2;
  text-align: center;
}

.aw-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff !important;
}

.aw-logo:hover {
  color: #fff !important;
  opacity: 0.9;
}

.aw-logo__icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.aw-logo__text {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}

.nav-toggle,
.search-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  justify-self: start;
}

.search-toggle {
  justify-self: end;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-label--open {
  display: none;
}

.nav-toggle[aria-expanded="false"] .nav-toggle-label--close,
.nav-toggle:not([aria-expanded="true"]) .nav-toggle-label--close {
  display: none;
}

.aw-header .site-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.aw-header .site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--aw-max);
}

.aw-header .site-nav a {
  display: block;
  padding: 0.9rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff !important;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.aw-header .site-nav li:last-child a {
  border-right: none;
}

.aw-header .site-nav a:hover,
.aw-header .site-nav a[aria-current="page"] {
  color: var(--aw-red) !important;
}

.aw-search-panel {
  display: none;
  background: #1a1a1a;
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aw-search-panel.is-open {
  display: block;
}

.aw-search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 28rem;
  margin: 0 auto;
}

.aw-search-form input[type="search"] {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: 1px solid #444;
  background: #222;
  color: #fff;
}

.aw-search-form button {
  padding: 0.55rem 1rem;
  background: var(--aw-red);
  color: #fff;
  border: none;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

/* —— Homepage —— */
.aw-home {
  max-width: var(--aw-max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
}

.aw-label {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.aw-label--dark {
  background: #000;
  color: #fff;
}

.aw-label--red {
  background: var(--aw-red);
  color: #fff;
  margin-top: 1rem;
}

/* Masthead */
.aw-masthead {
  display: grid;
  grid-template-columns: minmax(260px, 32%) 1fr;
  gap: 1.75rem;
  align-items: stretch;
  margin-bottom: 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--aw-border);
}

.aw-masthead__main {
  display: flex;
  flex-direction: column;
}

.aw-masthead__main .aw-featured-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.aw-masthead__main .aw-featured-hero__image {
  flex: 1;
  min-height: 220px;
  aspect-ratio: auto;
}

/* Latest block — full width below masthead */
.aw-latest-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--aw-border);
}

.aw-latest-block__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.aw-latest-block .aw-post-row--compact {
  grid-template-columns: 1fr;
  gap: 0.65rem;
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.aw-latest-block .aw-post-row__image {
  aspect-ratio: 16 / 10;
}

.aw-trending-overlay__link {
  display: block;
  color: #fff !important;
}

.aw-trending-overlay__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: #222;
}

.aw-trending-overlay__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-trending-overlay__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.85) 100%);
}

.aw-trending-overlay__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 1;
}

.aw-trending-overlay__copy h3 {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.35rem;
  color: #fff;
}

.aw-trending-overlay__copy p {
  font-size: 0.8125rem;
  line-height: 1.45;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.aw-sidebar-latest .aw-post-row {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--aw-border);
}

.aw-sidebar-latest .aw-post-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Featured hero */
.aw-featured-hero__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
  margin-bottom: 0.85rem;
}

.aw-featured-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-featured-hero__title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.aw-featured-hero__title a:hover {
  color: var(--aw-red);
}

.aw-featured-hero__excerpt {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--aw-muted);
  line-height: 1.65;
}

/* Post rows */
.aw-post-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.aw-post-row--reverse {
  grid-template-columns: 1fr 200px;
}

.aw-post-row--reverse .aw-post-row__image {
  order: 2;
}

.aw-post-row--reverse .aw-post-row__body {
  order: 1;
}

.aw-post-row--compact {
  grid-template-columns: 100px 1fr;
  gap: 0.85rem;
}

.aw-post-row__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.aw-post-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-post-row h3 {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.45rem;
}

.aw-post-row p {
  font-size: 0.875rem;
  color: var(--aw-muted);
  margin: 0;
  line-height: 1.55;
}

/* Latest strip */
.aw-latest-strip {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--aw-border);
}

.aw-latest-duo {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--aw-border);
}

.aw-latest-duo .aw-featured-hero__image {
  aspect-ratio: 4 / 3;
}

.aw-latest-duo .aw-featured-hero__title {
  font-size: 1.125rem;
}

.aw-latest-duo .aw-post-row {
  grid-template-columns: 1fr 240px;
  align-items: center;
  height: 100%;
}

.aw-latest-duo .aw-post-row h3 {
  font-size: 1.35rem;
}

.aw-latest-rows {
  display: grid;
  gap: 1.75rem;
}

.aw-latest-rows .aw-post-row {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--aw-border);
}

.aw-latest-rows .aw-post-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Category blocks */
.aw-category-block {
  margin-bottom: 3rem;
}

.aw-category-block__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--aw-border);
  border-bottom: 1px solid var(--aw-border);
}

.aw-category-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
  margin-bottom: 0.6rem;
}

.aw-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-category-card h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

.aw-category-card a:hover h3 {
  color: var(--aw-red);
}

/* Spotlight: big left + 2x2 right */
.aw-layout-spotlight {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.aw-layout-spotlight__lead .aw-featured-hero__image {
  aspect-ratio: 4 / 5;
}

.aw-layout-spotlight__lead .aw-featured-hero__title {
  font-size: 1.125rem;
  margin-top: 0.65rem;
}

.aw-layout-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
}

/* Music: 2x2 left + featured right */
.aw-layout-music {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.aw-layout-music__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
}

.aw-layout-music__featured {
  display: flex;
  flex-direction: column;
}

.aw-layout-music__featured .aw-featured-hero__image {
  flex: 1;
  aspect-ratio: auto;
  min-height: 220px;
}

.aw-layout-music__featured .aw-featured-hero__title {
  font-size: 1.25rem;
}

/* Uniform 3x2 grid */
.aw-layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.25rem;
}

.aw-see-more-wrap {
  text-align: center;
  margin-top: 1.75rem;
}

.aw-see-more-btn {
  display: inline-block;
  padding: 0.65rem 2rem;
  border: 1px solid var(--aw-text);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aw-text) !important;
  background: #fff;
  transition: background 0.15s ease, color 0.15s ease;
}

.aw-see-more-btn:hover {
  background: var(--aw-text);
  color: #fff !important;
}

/* —— Dark footer —— */
.aw-footer {
  background: var(--aw-footer) !important;
  color: #fff;
  margin-top: 0;
  border-top: none;
}

.aw-footer__top {
  max-width: var(--aw-max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.aw-footer .aw-logo__text {
  color: #fff;
}

.aw-footer__nav-primary,
.aw-footer__nav-secondary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.aw-footer__nav-primary {
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.aw-footer__nav-primary a {
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 700;
}

.aw-footer__nav-secondary a {
  color: #a0a0a0 !important;
  font-size: 0.8125rem;
}

.aw-footer__cta h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #fff;
}

.aw-footer__cta p {
  font-size: 0.8125rem;
  color: #ccc;
  margin: 0 0 1rem;
  line-height: 1.55;
}

.aw-footer__btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border: 1px solid #fff;
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.aw-footer__btn:hover {
  background: #fff;
  color: var(--aw-footer) !important;
}

.aw-footer__social span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.aw-footer__social-links {
  display: flex;
  gap: 0.5rem;
}

.aw-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 800;
  color: #fff !important;
}

.aw-social-icon span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.aw-social--fb { background: #1877f2; }
.aw-social--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.aw-social--in { background: #0a66c2; }

.aw-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.6875rem;
  color: #a0a0a0;
  line-height: 1.65;
}

.aw-footer__legal em {
  color: #888;
}

/* Inner pages */
.breadcrumb,
.page-header,
#main .section,
.single-article,
.related-posts {
  max-width: var(--aw-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hero--banner,
.newsletter,
.aw-home-title {
  display: none !important;
}

.aw-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--aw-muted);
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .aw-masthead,
  .aw-latest-duo,
  .aw-layout-spotlight,
  .aw-layout-music {
    grid-template-columns: 1fr;
  }

  .aw-latest-block__list {
    grid-template-columns: 1fr;
  }

  .aw-layout-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aw-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .aw-footer__cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .aw-header .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--aw-dark);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }

  .aw-header .site-nav.is-open {
    display: block;
  }

  .aw-header .site-nav ul {
    flex-direction: column;
  }

  .aw-header .site-nav a {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .aw-post-row,
  .aw-post-row--reverse,
  .aw-latest-duo .aw-post-row {
    grid-template-columns: 1fr !important;
  }

  .aw-post-row--reverse .aw-post-row__image,
  .aw-post-row--reverse .aw-post-row__body {
    order: unset;
  }

  .aw-layout-spotlight__grid,
  .aw-layout-music__grid,
  .aw-layout-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .aw-footer__top {
    grid-template-columns: 1fr;
  }
}

/* —— Single article (inside blog page) —— */
.aw-single-wrap {
  max-width: var(--aw-max);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.breadcrumb {
  display: none;
}

.aw-single-hero {
  margin: 0 0 0.5rem;
}

.aw-single-hero img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eee;
}

.aw-single-credit {
  font-size: 0.75rem;
  color: var(--aw-muted);
  margin-top: 0.4rem;
  text-align: left;
}

.aw-single-header {
  text-align: center;
  padding: 1.5rem 0 2rem;
  max-width: 52rem;
  margin: 0 auto;
}

.aw-single-header h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.aw-single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

.aw-author-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
}

.aw-author-name {
  font-weight: 800;
}

.aw-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--aw-muted);
}

.aw-meta-item a {
  color: var(--aw-text);
  font-weight: 600;
}

.aw-meta-item a:hover {
  color: var(--aw-red);
}

.aw-single-layout {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 30%);
  gap: 2.5rem;
  align-items: start;
}

.aw-single-main .article-content {
  max-width: none;
  margin: 0;
  padding: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.aw-single-main .article-content p {
  margin-bottom: 1.25rem;
}

.aw-single-main .article-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.aw-single-main .article-content h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 1.5rem 0 0.5rem;
}

.aw-single-main .article-content a {
  color: #1a5fb4;
  text-decoration: underline;
  font-weight: 500;
}

.aw-single-sidebar {
  position: sticky;
  top: 1rem;
}

.aw-single-sidebar .aw-label {
  margin-bottom: 1rem;
}

.aw-sidebar-post {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--aw-border);
}

.aw-sidebar-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.aw-sidebar-post a {
  color: var(--aw-text) !important;
}

.aw-sidebar-post__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
  background: #eee;
  margin-bottom: 0.55rem;
}

.aw-sidebar-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-sidebar-post h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 0.3rem;
}

.aw-sidebar-post time {
  font-size: 0.8125rem;
  color: var(--aw-muted);
}

/* Share */
.aw-article-share {
  margin: 2.5rem 0 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--aw-border);
}

.aw-article-share__label {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.85rem;
}

.aw-article-share__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.aw-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none !important;
}

.aw-share--fb { background: #1877f2; }
.aw-share--x { background: #000; }
.aw-share--in { background: #0a66c2; font-size: 0.625rem; }
.aw-share--pi { background: #e60023; }
.aw-share--ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.aw-share--more { background: #f57c00; font-size: 1.1rem; line-height: 1; }

/* Tags on single */
.aw-single-main .article-tags {
  max-width: none;
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--aw-border);
}

/* Read More */
.aw-read-more {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--aw-border);
}

.aw-read-more h2 {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 2rem;
}

.aw-read-more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
}

.aw-read-more-card a {
  color: var(--aw-text) !important;
}

.aw-read-more-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
  margin-bottom: 0.6rem;
}

.aw-read-more-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-read-more-card h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aw-read-more-card time {
  font-size: 0.8125rem;
  color: var(--aw-muted);
}

@media (max-width: 1024px) {
  .aw-single-layout {
    grid-template-columns: 1fr;
  }

  .aw-single-sidebar {
    position: static;
    order: -1;
    margin-bottom: 2rem;
  }

  .aw-read-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .aw-read-more-grid {
    grid-template-columns: 1fr;
  }

  .aw-single-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* —— Get Published / Contact page —— */
.aw-contact-page {
  max-width: none;
  padding: 0;
}

.aw-contact-hero {
  max-width: var(--aw-max);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.aw-contact-hero__copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: #2a2a2a;
  margin: 0 0 1.25rem;
}

.aw-contact-hero__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #444;
  margin: 0 0 2rem;
  max-width: 28rem;
}

.aw-contact-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aw-contact-benefits li {
  position: relative;
  padding: 1rem 0 1rem 1.5rem;
  border-top: 1px solid var(--aw-border);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #333;
}

.aw-contact-benefits li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--aw-muted);
}

.aw-form-card {
  background: #f7f6f4;
  border: 1px solid #e8e6e2;
  border-radius: 10px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.aw-form-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
  color: #2a2a2a;
}

.aw-form-card__intro {
  font-size: 0.875rem;
  color: var(--aw-muted);
  margin: 0 0 1.5rem;
}

.aw-contact-form {
  display: grid;
  gap: 1rem;
}

.aw-form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.aw-form-field label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 0.35rem;
}

.aw-form-field input,
.aw-form-field select,
.aw-form-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d8d6d2;
  border-radius: 6px;
  background: #fff;
  font-size: 0.9375rem;
  font-family: var(--aw-font);
  color: var(--aw-text);
}

.aw-form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.aw-input-icon {
  position: relative;
}

.aw-input-icon svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

.aw-input-icon input {
  padding-left: 2.25rem;
}

.aw-select-wrap {
  position: relative;
}

.aw-select-wrap select {
  appearance: none;
  padding-right: 2rem;
}

.aw-select-wrap::after {
  content: "▾";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  font-size: 0.85rem;
}

.aw-form-consent label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #555;
  cursor: pointer;
}

.aw-form-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.aw-form-submit {
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 6px;
  background: #6b1428;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}

.aw-form-submit:hover {
  background: #520f1f;
}

.aw-form-footnote {
  text-align: center;
  font-size: 0.75rem;
  color: var(--aw-muted);
  margin: 0.75rem 0 0;
}

.aw-contact-form .wmv-form-notice {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
}

.aw-contact-faq {
  background: #f3f1ed;
  padding: 3rem 1.25rem 3.5rem;
}

.aw-contact-faq h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  text-align: center;
  margin: 0 0 2rem;
  color: #2a2a2a;
}

.aw-faq {
  max-width: 52rem;
  margin: 0 auto;
  border-top: 1px solid #ddd9d3;
}

.aw-faq__item {
  border-bottom: 1px solid #ddd9d3;
}

.aw-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.aw-faq__question::-webkit-details-marker {
  display: none;
}

.aw-faq__icon {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  color: #333;
}

.aw-faq__item[open] .aw-faq__icon {
  transform: rotate(45deg);
}

.aw-faq__answer {
  padding: 0 0 1.15rem;
}

.aw-faq__answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #555;
  max-width: 42rem;
}

@media (max-width: 900px) {
  .aw-contact-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }

  .aw-form-row--split {
    grid-template-columns: 1fr;
  }
}

/* —— About page —— */
.aw-about {
  max-width: none;
  padding: 0;
}

/* Intro: two columns + tilted photo */
.aw-about-intro {
  background: #fff;
  padding: 3.5rem 1.25rem;
}

.aw-about-intro__inner {
  max-width: var(--aw-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.aw-about-intro__copy h1 {
  font-family: var(--aw-font);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: var(--aw-text);
}

.aw-about-intro__copy p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #444;
  margin: 0;
  max-width: 34rem;
}

.aw-about-intro__visual {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-about-intro__pattern {
  position: absolute;
  inset: 5% 0 5% 10%;
  background-image:
    linear-gradient(30deg, transparent 49.5%, #d8d8d8 49.5%, #d8d8d8 50.5%, transparent 50.5%),
    linear-gradient(150deg, transparent 49.5%, #d8d8d8 49.5%, #d8d8d8 50.5%, transparent 50.5%);
  background-size: 48px 84px;
  opacity: 0.55;
}

.aw-about-intro__pattern::after {
  content: "";
  position: absolute;
  left: 8%;
  bottom: 12%;
  width: 28%;
  height: 28%;
  background: #000;
  transform: rotate(45deg);
  z-index: 0;
}

.aw-about-intro__photo {
  position: relative;
  z-index: 1;
  width: 72%;
  margin: 0;
  transform: rotate(6deg);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.aw-about-intro__photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
}

/* Exists: dark split with bg image */
.aw-about-exists {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.aw-about-exists::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 42%;
  background-image: var(--aw-exists-bg);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.45;
}

.aw-about-exists::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 42%, transparent 72%);
}

.aw-about-exists__inner {
  position: relative;
  z-index: 1;
  max-width: var(--aw-max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
  max-width: 52%;
  margin-left: max(1.25rem, calc((100vw - var(--aw-max)) / 2 + 1.25rem));
  margin-right: auto;
}

.aw-about-exists__inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.aw-about-exists__inner p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.25rem;
}

.aw-about-exists__inner p:last-child {
  margin-bottom: 0;
}

/* Editorial philosophy */
.aw-about-philosophy {
  background: #f3f1ed;
  padding: 3.5rem 1.25rem;
}

.aw-about-philosophy__inner {
  max-width: var(--aw-max);
  margin: 0 auto;
  text-align: center;
}

.aw-about-philosophy h2 {
  font-family: var(--aw-font);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 1rem;
}

.aw-about-philosophy__lead {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #555;
}

.aw-about-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

.aw-about-card {
  background: #2b2b2b;
  color: #fff;
  border-radius: 12px;
  padding: 2rem 1.25rem 1.5rem;
}

.aw-about-card__avatar {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.aw-about-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aw-about-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
}

.aw-about-card p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.aw-about-philosophy__foot {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #555;
}

/* Why read — dark section */
.aw-about-why {
  background: #000;
  color: #fff;
  padding: 4rem 1.25rem 4.5rem;
}

.aw-about-why__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.aw-about-why h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
}

.aw-about-why__lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 2rem;
}

.aw-about-why__list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.aw-about-why__item {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}

.aw-about-why__item h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
}

.aw-about-why__item p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.aw-about-why__foot {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

@media (max-width: 900px) {
  .aw-about-intro__inner,
  .aw-about-philosophy__grid {
    grid-template-columns: 1fr;
  }

  .aw-about-intro__visual {
    min-height: 16rem;
    order: -1;
  }

  .aw-about-exists__inner {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .aw-about-exists::before {
    left: 0;
    opacity: 0.25;
  }

  .aw-about-exists::after {
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.85) 100%);
  }
}

/* —— Legal & Privacy Center —— */
.aw-legal-hub {
  max-width: var(--aw-max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.aw-legal-hub__header {
  text-align: center;
  margin-bottom: 3rem;
}

.aw-legal-hub__header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 400;
  margin: 0;
  color: var(--aw-text);
}

.aw-legal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 54rem;
  margin: 0 auto;
}

.aw-legal-card {
  grid-column: span 2;
  border: 1px solid var(--aw-text);
  background: #fff;
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aw-legal-card:nth-child(7) {
  grid-column: 3 / span 2;
}

.aw-legal-card__icon {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.25rem;
}

.aw-legal-card__icon svg {
  width: 100%;
  height: 100%;
}

.aw-legal-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 1.25rem;
  flex: 1;
}

.aw-legal-card__btn {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1px solid var(--aw-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.875rem;
  color: var(--aw-text) !important;
  background: #fff;
  transition: background 0.15s ease, color 0.15s ease;
}

.aw-legal-card__btn:hover {
  background: var(--aw-text);
  color: #fff !important;
}

/* Policy detail */
.aw-policy-page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.aw-policy-back {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.aw-policy-back a {
  color: var(--aw-muted);
}

.aw-policy-document__header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin: 0 0 1.5rem;
  text-align: center;
}

.aw-policy-document__content h2 {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 1.75rem 0 0.65rem;
}

.aw-policy-document__content p,
.aw-policy-document__content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.aw-sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aw-sitemap-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--aw-border);
}

.aw-sitemap-list a {
  font-weight: 600;
  color: #1a5fb4;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .aw-legal-grid {
    grid-template-columns: 1fr;
  }

  .aw-legal-card,
  .aw-legal-card:nth-child(7) {
    grid-column: auto;
  }
}

/* —— 404 —— */
.aw-404 {
  max-width: var(--aw-max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
  text-align: center;
}

.aw-404__header h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.aw-404__header p {
  color: var(--aw-muted);
  margin: 0 0 1.5rem;
}

.aw-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.aw-404 .aw-form-submit {
  width: auto;
  display: inline-block;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
