:root {
  --as-primary: #111828;
  --as-secondary-1: #222e5b;
  --as-secondary-2: #fc5761;
  --as-n-800: #111828;
  --as-n-700: #2c3240;
  --as-n-600: #586071;
  --as-n-500: #8b909a;
  --as-n-400: #b7c0d2;
  --as-n-300: #e1e6f1;
  --as-n-200: #f4f7fb;
  --as-n-100: #ffffff;
  --as-blue-100: #eaf4ff;
  --as-green-400: #11845b;
  --as-red-400: #dc2b2b;
  --as-orange-400: #d5691b;
  --as-shadow-01: 1px 0 14px 0 #4646460f;
  --as-shadow-02: 0 2px 12px 0 #14142b14;
  --as-shadow-03: 0 8px 24px 0 #16152221;
  --as-radius: 12px;
  --as-radius-sm: 8px;
  --as-container: 1304px;
  --as-logo-height: 40px;
  --as-hero-title-size: 48px;
  --as-hero-title-leading: 1.08;
  --as-intro-title-size: 32px;
  --as-intro-title-leading: 1.5;
  --as-font: var(--wp--preset--font-family--thicccboi, "THICCCBOI", system-ui, sans-serif);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--as-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.625;
  color: var(--as-n-700);
  background: var(--as-n-100);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--as-secondary-2);
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--as-n-800);
  font-weight: 700;
  margin: 0 0 0.5em;
}

h1 { font-size: 48px; line-height: 1.208; }
h2 { font-size: 32px; line-height: 1.5; }
h3 { font-size: 24px; line-height: 1.417; }
h4 { font-size: 22px; line-height: 1.273; }
h5 { font-size: 18px; line-height: 1.333; }
h6 { font-size: 16px; line-height: 1.375; }

p { margin: 0 0 1em; }

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

.as-skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--as-primary);
  color: var(--as-n-100);
  padding: 12px 16px;
}

.as-skip:focus {
  left: 16px;
}

.as-container {
  width: 100%;
  max-width: var(--as-container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.as-container--narrow {
  max-width: 760px;
}

/* Header */
.as-header {
  background: var(--as-n-100);
  border-bottom: 1px solid var(--as-n-300);
  padding: 24px 0;
  position: relative;
  z-index: 20;
}

.as-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.as-header__brand {
  flex: 0 0 520px;
  width: 520px;
}

.as-header__brand .custom-logo-link,
.as-header__brand .custom-logo {
  display: block;
  color: inherit;
}

.as-header__brand .custom-logo {
  height: var(--as-logo-height, 40px);
  max-height: var(--as-logo-height, 40px);
  max-width: 100%;
  width: auto;
}

.as-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--as-n-800);
  letter-spacing: -0.02em;
}

.as-logo-text:hover {
  color: var(--as-secondary-2);
}

.as-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.as-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--as-n-800);
  margin: 0 auto;
}

.as-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px 28px;
}

.as-nav__list a {
  color: var(--as-n-800);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125;
}

.as-nav__list a:hover,
.as-nav__list .current-menu-item > a {
  color: var(--as-secondary-2);
}

.as-nav__list .sub-menu {
  display: none;
  position: absolute;
  min-width: 220px;
  background: var(--as-n-100);
  border-radius: var(--as-radius);
  box-shadow: var(--as-shadow-03);
  padding: 12px 0;
  list-style: none;
  margin: 8px 0 0;
}

.as-nav__list .menu-item-has-children {
  position: relative;
}

.as-nav__list .menu-item-has-children:hover > .sub-menu,
.as-nav__list .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.as-nav__list .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
}

/* Hero */
.as-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--as-n-800);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 112px 0 64px;
}

.as-hero--has-image {
  background-color: var(--as-n-800);
}

.as-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.as-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--as-n-800);
  opacity: 0.5;
  z-index: 0;
}

.as-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.as-hero__finder {
  margin-top: 32px;
}

.as-hero__title {
  margin: 0 0 16px;
  color: var(--as-n-100);
  font-size: var(--as-hero-title-size, 48px);
  line-height: var(--as-hero-title-leading, 1.08);
}

.as-hero__text {
  margin: 0;
  color: var(--as-n-200);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.625;
}

.as-home-search {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 6px;
  background: var(--as-n-100);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: var(--as-shadow-03);
}

.as-page-header .as-home-search {
  max-width: 580px;
  margin: 0 auto;
  border-color: var(--as-n-300);
  box-shadow: var(--as-shadow-02);
}

.as-home-search input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 12px 18px;
  font: inherit;
  font-size: 16px;
  color: var(--as-n-800);
  background: transparent;
}

.as-home-search input[type="search"]::placeholder {
  color: var(--as-n-500);
}

.as-home-search input[type="search"]:focus {
  outline: none;
}

.as-home-search .as-btn {
  width: auto;
  flex-shrink: 0;
  border-radius: 999px;
  padding: 14px 22px;
}

.as-anlage-search__count {
  margin: 16px 0 0;
  color: var(--as-n-600);
  font-size: 16px;
}

.as-anlage-search__list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 16px;
}

.as-anlage-search__link {
  display: block;
  padding: 24px;
  border: 1px solid var(--as-n-300);
  background: var(--as-n-100);
  border-radius: var(--as-radius);
  box-shadow: var(--as-shadow-02);
  color: inherit;
  text-decoration: none;
}

.as-anlage-search__link:hover {
  color: inherit;
  border-color: var(--as-secondary-2);
}

.as-anlage-search__title {
  margin: 0 0 4px;
  font-size: 22px;
  line-height: 1.273;
}

.as-anlage-search__link:hover .as-anlage-search__title {
  color: var(--as-secondary-2);
}

.as-anlage-search__place,
.as-anlage-search__sports {
  margin: 0;
  font-size: 16px;
  color: var(--as-n-600);
}

.as-anlage-search__pages {
  max-width: 760px;
  margin: 40px auto 0;
}

.as-anlage-search__pages .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.as-anlage-search__pages .page-numbers a,
.as-anlage-search__pages .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 8px 12px;
  border: 1px solid var(--as-n-300);
  border-radius: var(--as-radius-sm);
  color: var(--as-n-800);
  text-decoration: none;
}

.as-anlage-search__pages .page-numbers .current {
  background: var(--as-primary);
  border-color: var(--as-primary);
  color: var(--as-n-100);
}

.as-home-band {
  background: var(--as-blue-100);
  padding-bottom: 88px;
}

.as-intro {
  padding-top: 80px;
}

.as-intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.as-intro__grid--text {
  grid-template-columns: 1fr;
  max-width: 640px;
}

.as-intro__title {
  margin: 0 0 12px;
  font-size: var(--as-intro-title-size, 32px);
  line-height: var(--as-intro-title-leading, 1.5);
}

.as-intro__text {
  color: var(--as-n-600);
}

.as-intro__text p:last-child {
  margin-bottom: 0;
}

.as-overlap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  min-height: 420px;
}

.as-overlap::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.as-overlap__frame {
  position: absolute;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(20, 20, 43, 0.12);
}

.as-overlap__frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.as-overlap__frame--left {
  top: 0;
  left: 0;
  width: 62%;
  height: 62%;
  z-index: 1;
}

.as-overlap__frame--right {
  top: 38%;
  left: 38%;
  width: 62%;
  height: 62%;
  z-index: 2;
}

.as-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
}

.as-feature {
  background: var(--as-n-100);
  border-radius: var(--as-radius);
  box-shadow: var(--as-shadow-02);
  padding: 40px 28px;
  text-align: center;
}

.as-feature__title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.417;
}

.as-feature__text {
  margin: 0;
  color: var(--as-n-600);
  font-size: 16px;
  line-height: 1.625;
}

.as-sports {
  margin-top: 28px;
}

.as-sports__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.as-sport-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  background: var(--as-n-100);
  border: 1px solid transparent;
  border-radius: var(--as-radius);
  box-shadow: var(--as-shadow-02);
  padding: 20px 16px;
  color: var(--as-n-800);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.as-sport-card:hover {
  transform: scale(1.03);
  border-color: var(--as-secondary-2);
}

.as-sport-card__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 100%;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.as-sport-card__heading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.as-sport-card:hover .as-sport-card__heading,
.as-sport-card:hover .as-sport-card__icon {
  color: var(--as-secondary-2);
}

.as-sport-card__icon {
  color: var(--as-secondary-1);
}

.as-icon {
  width: 48px;
  height: 48px;
}

.as-sport-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.333;
}

.as-sport-card--has-shortcode {
  justify-content: flex-start;
  min-height: 0;
}

.as-sport-card__shortcode {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.as-sport-card__shortcode > *,
.as-sport-card__shortcode form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.as-sport-card__shortcode input,
.as-sport-card__shortcode select,
.as-sport-card__shortcode textarea,
.as-sport-card__shortcode button {
  margin-left: auto;
  margin-right: auto;
}

.as-sport-card__shortcode > *:first-child {
  margin-top: 0;
}

.as-sport-card__shortcode > *:last-child {
  margin-bottom: 0;
}

/* Articles */
.as-articles {
  padding: 80px 0 100px;
}

.as-articles__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.as-articles__header--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  text-align: left;
  margin: 0 0 32px;
}

.as-articles__header--split .as-articles__title,
.as-articles__header--split .as-related__title {
  margin: 0;
}

.as-articles__title {
  margin-bottom: 12px;
}

.as-articles__text {
  margin: 0;
  color: var(--as-n-600);
  font-size: 18px;
}

.as-articles__text p:last-child {
  margin-bottom: 0;
}

.as-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
  justify-items: stretch;
}

.as-articles__grid > * {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.as-post-card {
  position: relative;
  margin: 0;
  min-width: 0;
}

.as-archive-cards .as-post-card {
  border: 1px solid var(--as-n-300);
  border-radius: var(--as-radius);
  overflow: hidden;
  background: var(--as-n-100);
}

.as-archive-cards .as-post-card__media {
  border-radius: 0;
  margin-bottom: 0;
}

.as-archive-cards .as-post-card__body {
  padding: 20px 20px 24px;
}

.as-post-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: inherit;
  text-decoration: none;
}

.as-post-card__media {
  width: 100%;
  border-radius: var(--as-radius);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 3 / 2;
  background: var(--as-n-200);
  transform: translateZ(0);
}

.as-post-card__image,
.as-post-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.as-post-card:hover .as-post-card__image,
.as-post-card:hover .as-post-card__placeholder,
.as-post-card:focus-within .as-post-card__image,
.as-post-card:focus-within .as-post-card__placeholder {
  transform: scale(1.08);
}

.as-post-card__placeholder {
  display: block;
  background: linear-gradient(135deg, var(--as-n-300), var(--as-n-200));
}

.as-post-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.as-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--as-n-300);
  background: var(--as-n-100);
  color: var(--as-n-800);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.143;
}

a.as-badge {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  color: var(--as-n-800);
}

a.as-badge:hover {
  color: var(--as-secondary-2);
  border-color: var(--as-secondary-2);
}

.as-post-card__date {
  color: var(--as-n-600);
  font-size: 14px;
  font-weight: 700;
}

.as-post-card__title {
  font-size: 22px;
  line-height: 1.273;
  margin: 0 0 12px;
  color: var(--as-n-800);
  transition: color 0.3s ease;
}

.as-post-card:hover .as-post-card__title,
.as-post-card:focus-within .as-post-card__title {
  color: var(--as-secondary-2);
}

.as-post-card:hover .as-badge,
.as-post-card:focus-within .as-badge {
  color: var(--as-n-800);
}

.as-post-card .as-badge:hover,
.as-post-card .as-badge:focus-visible {
  color: var(--as-secondary-2);
}

.as-post-card__excerpt {
  margin: 0;
  color: var(--as-n-600);
  font-size: 16px;
  line-height: 1.625;
}

.as-articles__action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.as-articles__empty {
  text-align: center;
  color: var(--as-n-600);
}

.as-articles--related {
  padding-bottom: 40px;
}

/* Buttons */
.as-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--as-radius-sm);
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s, color 0.3s;
}

.as-btn--accent {
  background: var(--as-secondary-2);
  border-color: var(--as-secondary-2);
  color: var(--as-n-100);
}

.as-btn--accent:hover {
  background: var(--as-primary);
  border-color: var(--as-primary);
  color: var(--as-n-100);
  transform: scale(1.04);
}

.as-btn--dark {
  background: var(--as-primary);
  border-color: var(--as-primary);
  color: var(--as-n-100);
}

.as-btn--dark:hover {
  background: var(--as-secondary-2);
  border-color: var(--as-secondary-2);
  color: var(--as-n-100);
}

.as-btn--outline {
  background: transparent;
  border-color: var(--as-primary);
  color: var(--as-primary);
}

.as-btn--outline:hover {
  background: var(--as-primary);
  border-color: var(--as-primary);
  color: var(--as-n-100);
}

/* Content pages */
.as-main--content {
  padding: 64px 0 96px;
}

.as-main--post {
  padding-top: 72px;
  padding-bottom: 96px;
}

.as-page-header {
  text-align: center;
  margin-bottom: 40px;
}

.as-page-header .post-categories {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.as-post-hero {
  text-align: center;
  margin-bottom: 40px;
}

.as-post-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.as-post-hero__date {
  color: var(--as-n-600);
  font-size: 14px;
  font-weight: 700;
}

.as-post-hero__title {
  max-width: 760px;
  margin: 0 auto 12px;
}

.as-post-hero__lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--as-n-700);
}

.as-entry__meta {
  color: var(--as-n-600);
  font-size: 14px;
  font-weight: 700;
}

.as-entry__hero {
  margin-bottom: 40px;
}

.as-entry--post .as-entry__hero {
  margin-bottom: 72px;
  display: flex;
  justify-content: center;
}

.as-entry__image {
  width: 100%;
  border-radius: var(--as-radius);
}

.as-entry--post .as-entry__image {
  width: auto;
  max-width: 100%;
  max-height: 600px;
  height: auto;
  object-fit: contain;
}

.as-entry__content {
  max-width: 760px;
}

.as-entry--post .as-entry__content {
  margin-left: auto;
  margin-right: auto;
}

.as-entry__content > *:first-child {
  margin-top: 0;
}

.as-entry__content a {
  text-decoration: underline;
}

.as-entry--post .as-entry__content a {
  color: var(--as-secondary-2);
  text-decoration: none;
}

.as-entry--post .as-entry__content a:hover {
  color: var(--as-primary);
}

.as-entry--post .as-entry__content p {
  margin-top: 16px;
  margin-bottom: 16px;
}

.as-entry--post .as-entry__content h2,
.as-entry--post .as-entry__content h3,
.as-entry--post .as-entry__content h4,
.as-entry--post .as-entry__content h5,
.as-entry--post .as-entry__content h6 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.as-entry--post .as-entry__content ul,
.as-entry--post .as-entry__content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.as-entry--post .as-entry__content figure {
  width: 100%;
  max-width: 100%;
  margin: 48px 0;
}

.as-entry--post .as-entry__content img,
.as-entry--post .as-entry__content .wp-block-image img {
  max-height: 600px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--as-radius);
}

.as-entry--post .as-entry__content blockquote {
  margin: 48px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--as-secondary-2);
  color: var(--as-n-600);
}

.as-author {
  max-width: 760px;
  margin: 64px auto 0;
}

.as-author__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--as-n-300);
  background: var(--as-n-100);
  box-shadow: var(--as-shadow-02);
  border-radius: var(--as-radius);
  color: inherit;
  text-decoration: none;
}

.as-author__card:hover {
  color: inherit;
}

.as-author__avatar {
  width: 112px;
  height: 112px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.as-author__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.as-author__name {
  font-size: 24px;
  line-height: 1.417;
  margin: 0;
  color: var(--as-n-800);
  transition: color 0.3s ease;
}

.as-author__card:hover .as-author__name {
  color: var(--as-secondary-2);
}

.as-author__bio {
  margin: 12px 0 0;
  color: var(--as-n-600);
}

.as-main--author {
  padding-top: 80px;
  padding-bottom: 0;
}

.as-author-page {
  margin-bottom: 0;
}

.as-author-page__card {
  max-width: 740px;
  margin: 0 auto;
  padding: 56px 68px 64px;
  border: 1px solid var(--as-n-300);
  background: var(--as-n-100);
  box-shadow: var(--as-shadow-02);
  border-radius: var(--as-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.as-author-page__avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.as-author-page__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.as-author-page__name {
  font-size: 32px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.as-author-page__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.as-author-page__social-link {
  width: 32px;
  height: 32px;
  border-radius: var(--as-radius-sm);
  background: #ffeff0;
  color: var(--as-secondary-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.as-author-page__social-link:hover {
  background: var(--as-secondary-2);
  color: var(--as-n-100);
}

.as-author-page__social-link svg {
  width: 14px;
  height: 14px;
  display: block;
}

.as-author-page__divider {
  width: 100%;
  height: 1px;
  margin: 40px 0;
  border: 0;
  background: var(--as-n-400);
}

.as-author-page__about {
  width: 100%;
  text-align: left;
}

.as-author-page__about-title {
  margin: 0 0 16px;
}

.as-author-page__bio {
  color: var(--as-n-600);
}

.as-author-page__bio p:last-child,
.as-author-page__bio ul:last-child,
.as-author-page__bio ol:last-child {
  margin-bottom: 0;
}

.as-author-page__bio ul,
.as-author-page__bio ol {
  padding-left: 24px;
  margin: 0 0 1em;
}

.as-author-page__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.35em;
}

.as-author-page__kicker,
.as-author-page__heading .as-articles__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--as-n-800);
}

.as-author-page__articles {
  padding-top: 80px;
}

.as-main--post .as-comments {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8px;
}

.as-has-contact .as-entry__content {
  margin-left: auto;
  margin-right: auto;
}

.as-contact {
  max-width: 760px;
  margin: 0 auto;
}

.as-contact__intro {
  margin: 0 0 24px;
  color: var(--as-n-600);
}

.as-contact__notice {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: var(--as-radius-sm);
  font-size: 16px;
  font-weight: 600;
}

.as-contact__notice--ok {
  background: #e8f6f0;
  color: var(--as-green-400);
}

.as-contact__notice--err {
  background: #fdecec;
  color: var(--as-red-400);
}

.as-contact__again {
  margin: 0 0 24px;
}

.as-contact__again a {
  font-weight: 700;
}

.as-contact__form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--as-n-300);
  background: var(--as-n-100);
  border-radius: var(--as-radius);
  box-shadow: var(--as-shadow-02);
}

.as-contact__row {
  display: grid;
  gap: 16px;
  margin: 0;
}

.as-contact__field {
  margin: 0;
}

.as-contact__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--as-n-800);
}

.as-contact__field input,
.as-contact__field select,
.as-contact__field textarea {
  width: 100%;
  border: 1px solid var(--as-n-300);
  border-radius: var(--as-radius-sm);
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  color: var(--as-n-800);
  background: var(--as-n-100);
}

.as-contact__field input::placeholder,
.as-contact__field textarea::placeholder {
  color: var(--as-n-500);
}

.as-contact__field input:focus,
.as-contact__field select:focus,
.as-contact__field textarea:focus {
  outline: 2px solid var(--as-secondary-2);
  outline-offset: 1px;
  border-color: var(--as-secondary-2);
}

.as-contact__field textarea {
  min-height: 160px;
  resize: vertical;
}

.as-contact__actions {
  margin: 4px 0 0;
}

.as-contact__actions .as-btn {
  width: auto;
}

.as-contact__legal {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--as-n-600);
}

.as-contact__legal a {
  color: inherit;
}

.as-contact__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.as-contact__hints {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.as-contact__hint {
  padding: 20px;
  border: 1px solid var(--as-n-300);
  background: var(--as-n-100);
  border-radius: var(--as-radius);
}

.as-contact__hint h2 {
  font-size: 18px;
  line-height: 1.333;
  margin: 0 0 8px;
}

.as-contact__hint p {
  margin: 0;
  font-size: 16px;
  color: var(--as-n-600);
}

@media (min-width: 640px) {
  .as-contact__row--split {
    grid-template-columns: 1fr 1fr;
  }

  .as-contact__hints {
    grid-template-columns: 1fr 1fr;
  }
}

.as-search {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.as-search input[type="search"] {
  flex: 1;
  max-width: 360px;
  border: 1px solid var(--as-n-300);
  border-radius: var(--as-radius-sm);
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
}

.as-comments {
  max-width: 760px;
  margin-top: 64px;
}

.as-comment-list {
  list-style: none;
  padding: 0;
}

.nav-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

/* Footer */
.as-footer {
  background: transparent;
  color: var(--as-n-700);
  padding: 48px 0 56px;
}

.as-footer-kasten {
  background: var(--as-blue-100);
  border-radius: var(--as-radius);
  padding: 56px 48px 40px;
}

.as-footer-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px 64px;
  align-items: start;
}

.as-footer-box__copy {
  color: var(--as-n-600);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.625;
}

.as-footer-box__copy p:first-child {
  margin-top: 0;
}

.as-footer-box__copy p:last-child {
  margin-bottom: 0;
}

.as-footer-box__posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.as-footer-box__posts a {
  color: var(--as-n-800);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.as-footer-box__posts a:hover {
  color: var(--as-secondary-2);
}

.as-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--as-n-300);
}

.as-footer-bar__brand .custom-logo-link,
.as-footer-logo {
  display: block;
}

.as-footer-bar__brand .custom-logo,
.as-footer-logo__img {
  max-height: 40px;
  width: auto;
}

.as-footer-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: flex-end;
}

.as-footer-bar a {
  color: var(--as-n-800);
  font-size: 15px;
  font-weight: 500;
}

.as-footer-bar__nav a,
.as-footer-bar__list a {
  font-weight: 500;
}

.as-footer-bar a:hover {
  color: var(--as-secondary-2);
}

@media (max-width: 991px) {
  h1 { font-size: 36px; }
  .as-hero__title { font-size: min(36px, var(--as-hero-title-size, 48px)); }
  h2 { font-size: 28px; }
  .as-intro__title { font-size: min(28px, var(--as-intro-title-size, 32px)); }
  .as-articles__grid { grid-template-columns: 1fr; gap: 40px; }
  .as-articles__header--split {
    flex-direction: column;
    align-items: flex-start;
  }
  .as-hero { min-height: 420px; padding: 88px 0 56px; }
  .as-intro__grid,
  .as-footer-box,
  .as-features { grid-template-columns: 1fr; }
  .as-overlap { margin: 0 auto; max-width: 420px; }
  .as-footer-box { padding: 0; }
  .as-footer-kasten { padding: 40px 28px 28px; }
  .as-entry--post .as-entry__hero { margin-bottom: 56px; }
  .as-author__name { font-size: 22px; }
  .as-author-page__card { padding: 48px 40px 56px; }
  .as-author-page__name,
  .as-author-page__kicker,
  .as-author-page__heading .as-articles__title { font-size: 28px; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  h1 { font-size: 32px; }
  .as-hero__title { font-size: min(32px, var(--as-hero-title-size, 48px)); }
  .as-header { padding: 16px 0; }
  .as-header__inner {
    justify-content: space-between;
    gap: 24px;
  }
  .as-header__brand {
    flex: 0 0 auto;
    width: auto;
  }
  .as-nav-toggle { display: flex; }
  .as-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--as-n-100);
    border-bottom: 1px solid var(--as-n-300);
    padding: 16px 24px 24px;
  }
  .as-nav.is-open { display: block; }
  .as-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }
  .as-nav__list .sub-menu {
    position: static;
    box-shadow: none;
    display: block;
    padding: 0 0 0 12px;
  }
  .as-sports { margin-top: 20px; }
  .as-sports__grid { gap: 10px; }
  .as-sport-card { padding: 16px 12px; }
  .as-articles { padding: 56px 0 72px; }
  .as-btn { width: 100%; }
  .as-articles__header--split .as-btn { width: auto; }
  .as-home-search { padding: 5px; }
  .as-home-search input[type="search"] { padding: 10px 14px; font-size: 15px; }
  .as-home-search .as-btn { width: auto; padding: 12px 16px; }
  .as-contact__form { padding: 20px; }
  .as-contact__actions .as-btn { width: 100%; }
  .as-articles__action { padding: 0 8px; }
  .as-author__avatar { width: 80px; height: 80px; }
  .as-author__card { padding: 40px 24px; }
  .as-author-page__card { padding: 40px 24px 48px; }
  .as-author-page__avatar { width: 120px; height: 120px; }
  .as-author-page__name,
  .as-author-page__kicker,
  .as-author-page__heading .as-articles__title { font-size: 24px; }
  .as-main--author { padding-top: 48px; }
  .as-entry--post .as-entry__content ul,
  .as-entry--post .as-entry__content ol { padding-left: 24px; }
  .as-footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .as-footer-bar__list { justify-content: flex-start; }
  .as-icon { width: 40px; height: 40px; }
  .as-sport-card__title { font-size: 15px; }
}

.as-hero-block .wp-block-cover__inner-container {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.as-sport-card.wp-block-group {
  background: var(--as-n-100);
  border: 1px solid var(--as-n-300);
  border-radius: var(--as-radius);
  box-shadow: var(--as-shadow-02);
  padding: 48px 24px;
}

.as-top {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 25;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--as-n-300);
  background: var(--as-n-100);
  color: var(--as-n-500);
  border-radius: 50%;
  box-shadow: var(--as-shadow-02);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.as-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.as-top:hover,
.as-top:focus-visible {
  color: var(--as-secondary-2);
  border-color: var(--as-secondary-2);
}

.as-top__icon {
  width: 18px;
  height: 18px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
