.at-hero {
  position: relative;
  z-index: 50;
  width: 100%;
  padding: 5rem 0 4rem;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 900px;
  margin: 0 0 2rem;
}

@media (max-width: 1099.98px) {
  .at-hero {
    padding: 4rem 0 3rem;
    min-height: 45vh;
  }
}

@media (max-width: 767.98px) {
  .at-hero {
    padding: 3rem 0 2.5rem;
    min-height: auto;
  }
}

.at-hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 1rem;
}

.at-hero__title {
  font-family: var(--wp--preset--font-family--inter, Inter, system-ui, sans-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 0 2rem;
}

.at-hero__title-primary {
  color: #1a1a1a;
}

.at-hero__title-secondary {
  color: #969696;
}

.at-hero__word {
  display: inline-block;
  margin-right: 0.25em;
  opacity: 0;
  transform: translateY(20px);
  animation: at-hero-word-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.at-hero__search-label,
.at-hero__search-wrap {
  opacity: 0;
  transform: translateY(20px);
  animation: at-hero-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.at-hero__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: at-hero-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1s;
}

.at-hero__search-label {
  animation-delay: 0.7s;
}

.at-hero__search-wrap {
  animation-delay: 0.9s;
}

@keyframes at-hero-word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes at-hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .at-hero__word,
  .at-hero__search-label,
  .at-hero__search-wrap,
  .at-hero__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.at-hero__actions {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 3rem;
  width: 100%;
  max-width: 1000px;
  margin-top: -1rem;
}

@media (max-width: 1099.98px) {
  .at-hero__actions {
    gap: 2rem;
  }
}

@media (max-width: 767.98px) {
  .at-hero__actions {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
  }
}

.at-hero__search-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.at-hero__cta-parallax {
  flex-shrink: 0;
  will-change: transform;
  backface-visibility: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.at-hero__search-label {
  font-size: 1.5rem;
  line-height: 1.35;
  color: #666;
  margin: 10px 0 0.5rem;
}

@media (max-width: 767.98px) {
  .at-hero__search-label {
    font-size: 0.8125rem;
  }
}

.at-hero__search-wrap {
  position: relative;
  max-width: none;
  margin: 0;
  z-index: 20;
}

.at-hero__search {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.at-hero__search .at-search-input,
.at-hero__search button {
  box-sizing: border-box;
  min-height: 2.5625rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.25;
}

.at-hero__search input {
  flex: 1;
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #1a1a1a;
}

.at-hero__search input::placeholder {
  color: #bbb;
  opacity: 1;
}

.at-hero__search button {
  flex-shrink: 0;
  border: 1px solid #d0d0d0;
  background: transparent;
  color: #666;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.at-hero__search button:hover {
  color: #0066cc;
  border-color: #0066cc;
  background: transparent;
}

.at-404__search-wrap {
  max-width: 560px;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 50;
}

.at-hero__cta-parallax.is-sticky {
  z-index: 60;
}

.at-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: min(385px, 100%);
  min-height: 98px;
  padding: 0.875rem 2rem;
  background: #f0f0f0;
  border-radius: 10px;
}

@media (max-width: 1099.98px) {
  .at-hero__cta-parallax {
    margin-left: auto;
  }

  .at-hero__cta {
    min-width: 340px;
  }
}

@media (max-width: 767.98px) {
  .at-hero__cta-parallax {
    width: 100%;
    margin-left: 0;
  }

  .at-hero__cta {
    width: 100%;
    min-width: auto;
    flex-direction: row;
    justify-content: center;
    padding-inline: 1.25rem;
  }
}

.at-hero__cta-text {
  font-size: 1.5rem;
  color: #666;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .at-hero__cta-text {
    font-size: 0.8125rem;
  }
}

.at-hero__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 2.5625rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  background: transparent;
  color: #666;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.at-hero__cta-button:hover {
  color: #0066cc;
  border-color: #0066cc;
}

.at-search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 1000;
}

.at-search-suggestions__row,
.at-search-suggestions__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.15s ease;
}

.at-search-suggestions__row:last-child,
.at-search-suggestions__footer:last-child {
  border-bottom: none;
}

.at-search-suggestions__row.is-active,
.at-search-suggestions__footer.is-active {
  background: #f0f4f8;
}

.at-search-suggestions__title {
  flex: 1;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.at-search-suggestions__badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #666;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.at-search-suggestions__badge--flag {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: inherit;
  background: transparent;
  padding: 0;
}

.at-search-suggestions__footer {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0066cc;
  border-top: 1px solid #ececec;
}

.at-search-suggestions__status {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

/* Search results page */
.at-search-results__header {
  margin-bottom: 2rem;
}

.at-search-results__title {
  font-family: var(--wp--preset--font-family--geist-mono, monospace);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.at-search-results__query {
  margin: 0;
  color: #666;
  font-size: 1rem;
}

.at-search-results__group {
  margin-bottom: 2.5rem;
}

.at-search-results__group-title {
  font-family: var(--wp--preset--font-family--geist-mono, monospace);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e8e8e8;
}

.at-search-results__items {
  display: grid;
  gap: 0.5rem;
}

.at-search-results__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}

.at-search-results__item:hover {
  background: #f0f4f8;
  border-color: #e8eef5;
}

.at-search-results__item-title {
  font-size: 0.95rem;
  font-weight: 500;
}

.at-search-results__guides .at-guides {
  margin-bottom: 0;
}

.at-guides {
  position: relative;
  z-index: 1;
}

.at-guides--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.at-guides--grid.at-guides--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.at-guides--grid.at-guides--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.at-guides--grid.at-guides--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .at-guides--grid.at-guides--cols-3,
  .at-guides--grid.at-guides--cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .at-guides--grid.at-guides--cols-2,
  .at-guides--grid.at-guides--cols-3,
  .at-guides--grid.at-guides--cols-4 {
    grid-template-columns: 1fr;
  }
}

.at-guides--list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.at-guides--list .at-guide-card {
  flex-direction: row;
  align-items: stretch;
}

.at-guides--list .at-guide-card__media {
  flex: 0 0 220px;
  max-width: 220px;
}

.at-guides--list .at-guide-card__media img,
.at-guides--list .at-guide-card__placeholder {
  height: 100%;
  min-height: 140px;
}

@media (max-width: 640px) {
  .at-guides--list .at-guide-card {
    flex-direction: column;
  }

  .at-guides--list .at-guide-card__media {
    flex: none;
    max-width: none;
  }
}

.at-guide-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.at-guide-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Editor preview only — wrapper class is not output on the frontend */
.at-guides--editor-preview .at-guide-card:hover {
  box-shadow: none;
  transform: none;
}

.at-guide-card__media-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
}

.at-guide-card__media-frame img,
.at-guide-card__media img,
.at-guide-card__placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.at-guide-card__media-frame img {
  height: 100%;
  aspect-ratio: auto;
}

.at-guide-card__placeholder {
  background: linear-gradient(135deg, #e8f0fe, #f3e8ff);
}

.at-guide-card__body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.at-guide-card__meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.at-guide-card__meta span + span::before {
  content: "·";
  margin-right: 0.5rem;
}

.at-guide-card__meta a {
  color: inherit;
  text-decoration: none;
}

.at-guide-card__meta a:hover,
.at-guide-card__meta a:focus-visible {
  color: #0066cc;
  text-decoration: underline;
}

.at-guide-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.at-guide-card__title a {
  color: inherit;
  text-decoration: none;
}

.at-guide-card__title a:hover {
  color: #0066cc;
}

.at-guide-card__excerpt {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Page templates wrap blocks in .wp-block-post-content, which adds global
   heading/paragraph margins — reset inside cards to match the homepage grid. */
.wp-block-post-content .at-guide-card__body :is(h3, p) {
  margin: 0;
}

.at-empty {
  text-align: center;
  color: #666;
  padding: 2rem;
}

.at-single-hero {
  margin-bottom: 2rem;
  position: relative;
}

.at-single-hero .at-media-featured-wrap {
  border-radius: 14px;
  overflow: hidden;
}

.at-single-hero img,
.at-single-hero .external-featured {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 14px;
}

.at-single-meta {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0 1rem;
}

.at-single-meta a {
  color: inherit;
  text-decoration: none;
}

.at-single-meta a:hover,
.at-single-meta a:focus-visible {
  color: #0066cc;
  text-decoration: underline;
}

.at-media-credit {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.35rem;
  text-align: right;
}

/* Countries directory */
.at-countries-directory__heading {
  margin-bottom: 3rem;
}

.at-countries-directory__title {
  font-family: var(--wp--preset--font-family--geist-mono, monospace);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 600;
}

.at-countries-directory__subtitle {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #666;
  margin: 0;
}

.at-countries-directory__search {
  position: relative;
  max-width: 600px;
  margin-bottom: 2rem;
}

.at-countries-directory__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
}

.at-countries-directory__search-input {
  width: 100%;
  height: 48px;
  padding: 0.75rem 2.75rem 0.75rem 2.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
}

.at-countries-directory__search-input:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.at-countries-directory__search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  background: transparent;
  color: #666;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
}

.at-countries-directory__search-clear:hover {
  color: #1a1a1a;
  background: #f0f0f0;
}

.at-countries-directory__continents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.at-countries-directory__continent-title {
  font-family: var(--wp--preset--font-family--geist-mono, monospace);
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #d8d8d8;
  margin: 0 0 1rem;
}

.at-countries-directory__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 2px;
}

@media (max-width: 1100px) {
  .at-countries-directory__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .at-countries-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .at-countries-directory__grid {
    grid-template-columns: 1fr;
  }
}

.at-countries-directory__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 2px 0.5rem;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
}

.at-countries-directory__item:hover {
  background: #f0f0f0;
}

.at-countries-directory__flag {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.at-countries-directory__name {
  font-size: 0.875rem;
  color: #666;
  flex: 1;
}

.at-countries-directory__name.has-guides {
  font-weight: 600;
  color: #1a1a1a;
}

.at-countries-directory__count {
  font-size: 0.75rem;
  color: #888;
  flex-shrink: 0;
}

.at-countries-directory__continent[hidden],
.at-countries-directory__item[hidden] {
  display: none;
}

.at-countries-directory__empty {
  text-align: center;
  color: #666;
  padding: 3rem 0;
}

/* Country term page */
.at-country-page__breadcrumbs {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.at-country-page__breadcrumbs a {
  color: #0066cc;
  text-decoration: none;
}

.at-country-page__breadcrumbs a:hover {
  text-decoration: underline;
}

.at-country-page__hero {
  margin-bottom: 1.25rem;
}

.at-country-page__title {
  font-family: var(--wp--preset--font-family--geist-mono, monospace);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.at-country-page__flag {
  font-size: 1.75rem;
}

.at-country-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.at-country-page__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  font-size: 0.875rem;
  color: #444;
  background: #fcfcfd;
}

.at-country-page__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .at-country-page__layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

.at-country-page__section-title {
  font-family: var(--wp--preset--font-family--geist-mono, monospace);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.at-country-page__cities {
  display: grid;
  gap: 0.35rem 1rem;
  grid-template-columns: repeat(var(--at-city-cols, 2), minmax(0, 1fr));
}

.at-country-page__city--row-gap {
  margin-top: 1rem;
}

.at-country-page__city-link,
.at-country-page__city-static {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.15rem 0;
  text-decoration: none;
  color: inherit;
}

.at-country-page__city-link:hover .at-country-page__city-name {
  color: #0066cc;
}

.at-country-page__city-name {
  font-size: 0.95rem;
  font-weight: 500;
}

.at-country-page__city-name.is-muted {
  color: #666;
  font-weight: 400;
}

.at-country-page__city-population {
  font-size: 0.8rem;
  color: #888;
  flex-shrink: 0;
}

.at-country-page__remaining {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  color: #666;
  font-size: 0.9rem;
}

.at-country-page__overview {
  padding: 1.5rem;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fcfcfd;
}

.at-country-page__overview-title {
  font-family: var(--wp--preset--font-family--geist-mono, monospace);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

/* City single page */
.at-city-page__breadcrumbs {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.at-city-page__breadcrumbs a {
  color: #0066cc;
  text-decoration: none;
}

.at-city-page__breadcrumbs a:hover {
  text-decoration: underline;
}

.at-city-page__hero {
  position: relative;
  width: 100%;
  height: clamp(280px, 50vw, 480px);
  margin-bottom: 2rem;
  border-radius: 14px;
  overflow: hidden;
}

.at-city-page__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.at-city-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

.at-city-page__photo-credit {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.8rem;
}

.at-city-page__hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.at-city-page__hero-title,
.at-city-page__title {
  font-family: var(--wp--preset--font-family--geist-mono, monospace);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0;
}

.at-city-page__hero-title {
  color: #fff;
}

.at-city-page__title {
  margin-bottom: 1.5rem;
}

.at-city-page__description {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
}

.at-city-page__aid-banner,
.at-aid-banner {
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: #f5f7fa;
  border-left: 4px solid #0066cc;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
}

.at-city-page__aid-banner p,
.at-aid-banner p {
  margin: 0;
}

.at-city-page__aid-banner a,
.at-aid-banner a {
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
}

.at-city-page__aid-banner a:hover,
.at-aid-banner a:hover {
  color: #0052a3;
  text-decoration: underline;
}

.at-city-page__description p {
  margin: 0 0 1rem;
}

.at-city-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.at-city-page__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  font-size: 0.875rem;
  color: #444;
  background: #fcfcfd;
  text-decoration: none;
}

.at-city-page__chip--link:hover {
  border-color: #0066cc;
  color: #0066cc;
}

.at-city-page__section-title {
  font-family: var(--wp--preset--font-family--geist-mono, monospace);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
}

.at-city-page__main .at-guides--list {
  margin-bottom: 0;
}

/* Author archive page */
.at-author-page__breadcrumbs {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.at-author-page__breadcrumbs a {
  color: #0066cc;
  text-decoration: none;
}

.at-author-page__breadcrumbs a:hover {
  text-decoration: underline;
}

.at-author-page__hero {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.at-author-page__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.at-author-page__title {
  font-family: var(--wp--preset--font-family--geist-mono, monospace);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.at-author-page__bio {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
}

.at-author-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.at-author-page__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  font-size: 0.875rem;
  color: #444;
  background: #fcfcfd;
}

.at-author-page__section-title {
  font-family: var(--wp--preset--font-family--geist-mono, monospace);
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
}

.at-author-page__main .at-guides--list {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .at-author-page__hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
