/* ===================================
   Nadia Quast Website - Shared Stylesheet
   Only layout, nav, footer, typography base
   =================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Bad+Script&family=Roboto+Slab:wght@400;600;700&family=Sansita:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&display=swap');

/* Custom Fonts (from original Elementor main.css) */
@font-face {
  font-family: 'Broadway NQ';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/broadway_nq.woff') format('woff'),
       url('../fonts/broadway_nq.ttf') format('truetype');
}
@font-face {
  font-family: 'SansitaOne';
  src: url('../fonts/SansitaOne.ttf');
}
@font-face {
  font-family: 'Lucida HW';
  src: url('../fonts/LHANDW.TTF');
}
@font-face {
  font-family: 'Grand Hotel';
  src: url('../fonts/GrandHotel-Regular.otf');
}
@font-face {
  font-family: 'Streetwear';
  src: url('../fonts/Streetwear.otf');
}
@font-face {
  font-family: 'Levenim MT';
  src: url('../fonts/lvnm.ttf');
}
@font-face {
  font-family: 'Fascinate NQ';
  src: url('../fonts/Fascinate-Regular.otf');
}

/* ===================================
   Reset
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

html, body {
  height: 100%;
}

body {
  background-color: rgb(242, 242, 242);
  color: #444444;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5em;
}

/* ===================================
   Typography
   =================================== */

h1 {
  font-family: 'SansitaOne', 'Sansita', sans-serif;
  font-weight: 900;
  font-style: italic;
  color: #444444;
  font-size: 84px;
  line-height: 1.12;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  margin: 50px 0 28px;
  text-align: center;
}

h2 {
  font-family: 'Roboto Slab', serif;
  color: #444444;
  font-size: 2em;
  margin: 25px 0 15px 0;
}

h3 {
  font-family: 'Roboto Slab', serif;
  color: #444444;
  font-size: 1.5em;
  margin: 20px 0 10px 0;
}

h4 {
  font-family: 'Roboto Slab', serif;
  color: #444444;
  font-size: 1.2em;
  margin: 15px 0 10px 0;
}

p {
  margin-bottom: 15px;
  text-align: justify;
}

a {
  color: #965a00;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #444444;
  text-decoration: underline;
}

.scroll-to-top,
.scroll-back {
  align-items: center;
  background-color: #444444;
  border: 1px solid #965a00;
  border-radius: 4px;
  color: #f2f2f2;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  height: 42px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 20px;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  width: 42px;
  z-index: 950;
}

.scroll-to-top {
  bottom: 20px;
}

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

.scroll-back {
  opacity: 1;
  pointer-events: auto;
  right: 20px;
  text-decoration: none;
  top: var(--scroll-back-title-top, 80px);
  transform: translateY(0);
}

.scroll-back.is-docked {
  bottom: 20px;
  right: 72px;
  top: auto;
}

.scroll-to-top:hover,
.scroll-to-top:focus,
.scroll-back:hover,
.scroll-back:focus {
  background-color: #965a00;
  outline: none;
  text-decoration: none;
}

.scroll-to-top:focus-visible,
.scroll-back:focus-visible {
  box-shadow: 0 0 0 3px rgba(150, 90, 0, 0.3);
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}

nav li {
  margin-bottom: 0;
}

/* ===================================
   Header & Navigation
   =================================== */

header {
  background-color: #ffffff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #444444;
}

.header-container {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 60px;
  width: auto;
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  max-height: 60px;
  transform: translateX(10px);
  width: auto;
}

nav {
  flex: 1;
  margin: 0 20px;
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 60px;
  padding: 0;
  margin: 0;
}

nav li {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
}

nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 60px;
  padding: 0 5px;
  color: #444444;
  font-size: 0.85em;
  transition: color 0.3s ease;
}

/* Desktop: hide icons, show text */
.nav-icon {
  display: none;
}

.nav-text {
  display: inline;
}

nav a:hover {
  color: #965a00;
  text-decoration: none;
}

nav li.active > a {
  color: #965a00;
  background-color: transparent;
}

.nav-icon-kontakt {
  height: 30px;
}

/* Social icons inside nav - hidden on desktop/tablet, shown in mobile slide-in */
.nav-social {
  display: none;
}

.nav-search a {
  font-size: 1em;
  color: #444444;
}

.nav-search {
  position: relative;
}

.nav-search a:hover {
  color: #965a00;
}

.nav-search-panel {
  background-color: #ffffff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
  height: 73px;
  opacity: 0;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 100%;
  visibility: hidden;
  width: 260px;
  z-index: 10000;
}

.nav-search.search-open .nav-search-panel {
  opacity: 1;
  visibility: visible;
}

.nav-search-form {
  height: 40px;
  position: relative;
  width: 230px;
}

.nav-search-form input[type="search"] {
  background-color: #f2f2f2;
  border: 1px solid #dddddd;
  color: #444444;
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  height: 40px;
  line-height: 25.2px;
  padding: 6px 45px 6px 12px;
  width: 100%;
}

.nav-search-form button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #777777;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}

.mobile-search-form {
  display: none;
}

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

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f2f2f2;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  height: auto;
  list-style: none;
  margin-top: 0;
  padding: 10px 0;
  z-index: 1001;
}

nav .dropdown-menu li {
  align-items: stretch;
  display: block;
  height: auto;
  width: 100%;
}

nav .dropdown-menu a {
  padding: 12px 20px;
  display: block;
  color: #444444;
  height: auto;
  justify-content: flex-start;
  line-height: 1.5;
  min-width: 0;
  text-align: left;
  width: 100%;
}

.dropdown-menu a:hover {
  background-color: #e0e0e0;
  color: #965a00;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a {
  padding-right: 18px;
  color: #8d8d8d;
  font-size: 1.45em;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #965a00;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #444444;
  font-size: 1.5em;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle-label {
  display: none;
}

.nav-close {
  display: none;
}

/* ===================================
   Main Content Layout
   =================================== */

main {
  width: 100%;
  min-height: calc(100vh - 300px);
}

/* Full-width section blocks */
.section-title,
.section-content,
.section-footer {
  width: 100%;
}

.section-title {
  padding: 20px;
  margin-top: 20px;
}

.page-title-section {
  padding: 18px 0 58px;
  text-align: center;
}

.page-title-section h1 {
  font-family: 'Sansita', sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
}

.section-content {
  padding: 40px 20px;
}

/* Centered container inside sections */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.divider {
  height: 2px;
  background-color: #ddd;
  margin: 40px 0;
}

/* ===================================
   Home and main topic pages
   =================================== */

.home-main,
.split-page-main {
  min-height: 0;
}

.home-title-section,
.split-title-section {
  padding: 20.6px 0 0;
  text-align: center;
}

.home-title-section h1,
.split-title-section h1 {
  font-family: 'Sansita', sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
}

.home-title-divider {
  border-top: 2px solid #444444;
  height: 2px;
  margin: 0 auto;
  width: 113px;
}

.home-title-divider-section {
  padding: 25px 20px;
}

.home-topic-section {
  margin-top: 30px;
  padding: 10px 20px;
}

.home-tablet-icons-section {
  display: none;
}

.home-tablet-icons-section a,
.home-tablet-icons-section img {
  display: block;
}

.home-mobile-card-section {
  display: none;
}

main a.content-image-frame,
main span.content-image-frame {
  box-sizing: border-box;
  display: inline-block;
  max-width: 100%;
  padding: 10px;
  vertical-align: top;
}

main figure.content-image-frame {
  box-sizing: border-box;
  max-width: 100%;
  padding: 10px;
}

main .content-image {
  border: 1px solid #444444;
  border-radius: 10px;
  box-sizing: border-box;
  display: block;
  padding: 0;
}

.home-content-section {
  margin-bottom: 264px;
  margin-top: 50px;
  padding: 10px 20px 11px;
}

.home-topic-row {
  display: grid;
  grid-template-columns: 287px 0 286px 0 287px;
  column-gap: 20px;
  justify-content: center;
  width: 100%;
}

.home-topic-row h2 {
  color: #444444;
  font-family: 'Bad Script', sans-serif;
  font-size: 39px;
  font-weight: 600;
  line-height: 39px;
  margin: 0;
  text-align: center;
}

.home-topic-row .home-star {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 20px;
}

.home-photo {
  margin: 0 auto;
  width: 940px;
}

.home-photo img {
  border-radius: 10px;
  display: block;
  height: 541px;
  object-fit: cover;
  width: 940px;
}

.home-photo figcaption,
.split-figure figcaption {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 25.2px;
  margin-top: 4px;
  text-align: center;
}

.split-content-section {
  padding: 40px 20px 10px;
}

.split-grid,
.football-grid {
  display: grid;
  grid-template-columns: repeat(2, 460px);
  column-gap: 20px;
  justify-content: center;
}

.split-grid {
  align-items: start;
}

.split-figure {
  margin: 0;
}

.split-figure img {
  display: block;
  object-fit: cover;
  width: 460px;
}

.education-content-section .split-figure img {
  height: 613px;
}

.split-copy {
  padding: 12px 12px 0;
}

.split-copy p {
  margin: 0;
  text-align: left;
}

.split-quote,
.split-author {
  color: #7a7a7a;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  line-height: 25.2px;
}

.split-author {
  margin-top: 20px !important;
}

.education-quote-card {
  background: rgba(68, 68, 68, 0.07);
  border-left: 4px solid #444444;
  border-radius: 6px;
  box-sizing: border-box;
  margin-left: -12px;
  margin-right: -12px;
  padding: 14px 16px;
}

.education-quote-card .split-quote {
  color: #444444;
}

.education-quote-card .split-author {
  color: #965a00;
  margin-top: 14px !important;
}

.split-body {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 21.6px;
}

.education-body {
  margin-left: -12px !important;
  margin-right: -12px !important;
  margin-top: 61px !important;
}

.education-content-section .split-figure figcaption,
.football-content-section .split-figure figcaption {
  margin-top: 13px;
}

.football-grid {
  row-gap: 20px;
}

.football-portrait {
  height: 524px;
}

.football-gallery-307 { height: 307px; }
.football-gallery-308 { height: 308px; }
.football-gallery-309 { height: 309px; }
.football-gallery-357 { height: 357px; }

.football-quote-card {
  background: rgba(68, 68, 68, 0.07);
  border-left: 4px solid #444444;
  border-radius: 6px;
  box-sizing: border-box;
  margin-left: -12px;
  margin-right: -12px;
  padding: 14px 16px;
}

.football-quote-card .football-quote {
  color: #444444;
  height: auto;
}

.football-quote-card .football-author {
  color: #965a00;
  margin-top: 14px !important;
}

.football-quote {
  height: 76px;
}

.football-author {
  margin-top: 19px !important;
}

.football-translation,
.football-body {
  margin-left: -12px !important;
  margin-right: -12px !important;
}

.football-translation {
  margin-top: 52px !important;
}

.football-body {
  margin-top: 21px !important;
}

/* ===================================
   Legal pages
   =================================== */

.legal-main {
  min-height: 0;
}

.legal-section {
  padding: 18px 0 31px;
}

.contact-section {
  padding-top: 8px;
  padding-bottom: 20px;
}

.privacy-section {
  padding-bottom: 0;
}

.legal-container {
  max-width: 1170px;
  padding-left: 10px;
  padding-right: 10px;
}

.contact-title,
.legal-container h1 {
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  text-shadow: none;
}

.contact-title {
  margin: 0 10px 30px;
  text-align: center;
}

.privacy-main .legal-container h1 {
  margin: 0 10px 40px;
}

.legal-container h2,
.legal-container h3,
.legal-container p,
.legal-container li {
  font-family: 'Roboto', sans-serif;
}

.legal-container h2 {
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 20px;
}

.legal-container h3 {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  line-height: 25.2px;
  margin: 0 0 20px;
}

.legal-container p {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 25.2px;
  margin: 0 0 20px;
  text-align: left;
}

.legal-container li {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 25.2px;
  margin: 0;
  text-align: left;
}

.legal-container h2:not(:first-child),
.legal-container h3:not(:first-child) {
  margin-top: 0;
}

.legal-container ul,
.legal-container ol {
  margin: 0 0 20px 20px;
  padding: 0;
}

/* ===================================
   About page
   =================================== */

.about-main {
  min-height: 0;
}

.about-hero {
  background-image: url('../images/nadia-1_crop3.jpg');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  margin-bottom: 30px;
}

.about-mobile-title-section {
  display: none;
}

.about-section {
  padding: 10px 20px 30px;
}

.about-container {
  margin: 0 auto;
  width: 940px;
}

.about-intro-grid,
.about-football-grid {
  display: grid;
  grid-template-columns: repeat(2, 460px);
  column-gap: 20px;
  align-items: start;
}

.about-text-block p,
.about-block p,
.about-milestones li {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 21.6px;
  margin: 0;
  text-align: left;
}

.about-text-block p + p,
.about-creative-block p + p {
  margin-top: 20px;
}

.about-figure {
  margin: 0;
}

.about-figure img {
  display: block;
  object-fit: cover;
  width: 460px;
}

.about-intro-grid .about-figure img {
  height: 308px;
}

.about-tattoo-figure img {
  height: 637px;
}

.about-tattoo-figure figcaption {
  margin-top: 13px;
}

.about-figure figcaption {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 25.2px;
  margin-top: 12px;
  text-align: center;
}

.about-block h2 {
  color: #444444;
  font-family: 'Roboto', sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 29px;
  margin: 0 0 32px 5px;
  text-align: center;
  width: 930px;
}

.about-education-block {
  margin-top: 46px;
}

.about-education-block > p,
.about-creative-block p:last-child {
  font-size: 11px;
}

.about-football-block {
  margin-top: 64px;
}

.about-football-grid {
  margin-top: 62px;
}

.about-football-quote {
  background-color: #444444;
  background-image: url('../images/football-ball-solid_b.svg');
  background-position: 100% 50%;
  background-repeat: no-repeat;
  border: 2px solid #ff9400;
  border-radius: 10px;
  color: #ffffff !important;
  font-family: Helvetica, sans-serif !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 28.8px !important;
  margin: 12px 0 0 !important;
  padding: 10px !important;
  text-align: center !important;
}

.about-football-quote em,
.about-football-quote strong {
  color: #ffffff;
}

.about-football-quote strong {
  color: #ffffff;
  font-weight: 600;
}

.about-football-copy {
  margin-top: 53px !important;
}

.about-milestones-block {
  background-image: url('../images/football-ball-solid_b.svg');
  background-position: 100% 50%;
  background-repeat: no-repeat;
  border: 2px solid #444444;
  border-radius: 10px;
  margin: 69px 0 0;
  padding: 10px;
}

.about-block .about-milestones-heading {
  color: #444444;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 21.6px;
  margin: 0;
  text-align: left;
}

.about-milestones-heading strong {
  color: #444444;
  font-weight: 600;
}

.about-milestones {
  margin: 15px 0 15px 20px;
  padding: 0;
}

.about-milestones li {
  color: #444444;
  margin: 0;
}

.about-creative-block {
  margin-top: 73px;
}

.about-creative-block p + p {
  margin-top: 20px;
}

/* ===================================
   Portfolio publications
   =================================== */

.portfolio-content-section {
  padding-top: 24px;
}

.portfolio-container {
  max-width: 990px;
}

.portfolio-heading {
  text-align: center;
  margin: 0 auto 45px;
  width: 940px;
}

.portfolio-heading h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 29px;
  line-height: 29px;
  font-weight: 600;
  margin: 0;
}

.portfolio-heading h2 + h2 {
  margin-top: 50px;
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(2, 480px);
  gap: 0;
  align-items: start;
  justify-content: center;
}

.publication-column {
  padding: 0 10px;
  position: relative;
}

.publication-column + .publication-column {
  border-left: 0;
}

.publication-column + .publication-column::before {
  border-left: 1px solid #444444;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 63px;
}

.publication-column h2 {
  border-bottom: 2px solid #444444;
  font-family: 'Roboto', sans-serif;
  font-size: 29px;
  line-height: 29px;
  font-weight: 600;
  margin: 0 -5px 32px 5px;
  padding: 0 0 4px;
  text-align: center;
}

.publication-column + .publication-column h2 {
  margin-left: -5px;
  margin-right: 5px;
}

.publication-column h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 21.6px;
  font-weight: 600;
  margin: 0 0 20px;
}

.publication-column h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 21.6px;
  font-weight: 600;
  font-style: italic;
  margin: 15px 0 15px 63px;
  text-align: left;
  width: 336px;
}

.publication-column p,
.publication-column li {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 21.6px;
}

.publication-column p {
  margin: 0 0 20px;
  text-align: left;
}

.publication-column ul {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-style: italic;
  line-height: 21.6px;
  margin: 15px 0 15px 83px;
  padding: 0;
  width: 336px;
}

.publication-column li {
  margin: 0;
  padding: 0;
}

.publication-note {
  display: block;
  font-weight: 400;
}

/* ===================================
   Book page
   =================================== */

.book-title-section {
  padding: 20px 0 30px;
}

.book-title-section h1 {
  font-family: 'Sansita', sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1.5;
}

.book-content-section {
  padding: 18px 20px 10px;
}

.book-container {
  max-width: 970px;
  padding: 0 15px;
  text-align: center;
}

.book-intro p,
.book-order p {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 20px;
  text-align: center;
}

.book-intro .book-name,
.book-order p {
  font-size: 20px;
}

.book-order {
  padding-top: 20px;
}

.book-image-stack {
  margin: 20px 0 0;
  text-align: center;
}

.book-order + .book-image-stack {
  margin-top: 40px;
}

.book-image-stack a {
  display: block;
}

.book-image-stack a + a {
  margin-top: 20px;
}

.book-image-stack img {
  border-radius: 10px;
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 940px;
}

.book-separator {
  border-top: 2px solid #444444;
  height: 2px;
  margin: 35px auto 35px;
  width: 151px;
}

.book-next {
  margin: 0 0 40px;
}

.book-next p {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

/* ===================================
   Press page
   =================================== */

.press-title-section {
  padding: 20px 0 30px;
}

.press-content-section {
  padding: 50px 0 0;
}

.press-heading {
  margin: 0 auto;
  max-width: 940px;
  text-align: center;
}

.press-heading h2 {
  color: #444444;
  font-family: 'Roboto', sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 29px;
  margin: 0;
  text-align: center;
}

.press-heading h2 + h2 {
  margin-top: 50px;
}

.press-image-stack {
  margin: 40px auto 0;
  max-width: 100%;
  text-align: center;
  width: 1120px;
}

.press-figure {
  margin: 0;
  text-align: center;
}

.press-figure + .press-figure {
  margin-top: 20px;
}

.press-image-stack a {
  display: block;
}

.press-figure a {
  margin-bottom: 13px;
}

.press-figure + .press-figure a {
  margin-bottom: 14px;
}

.press-image-stack img {
  border-radius: 10px;
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.press-figure figcaption {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 25.2px;
  text-align: center;
}

.press-image-stack .press-image-wide {
  height: 581px;
  object-fit: cover;
  width: 1120px;
}

.press-image-stack .press-image-narrow {
  height: 862px;
  object-fit: cover;
  width: 400px;
}

/* ===================================
   Article hub page
   =================================== */

.article-main {
  min-height: 0;
}

.article-title-section {
  padding: 20px 0 0;
}

.article-hub-section {
  padding: 80px 0 15px;
}

.article-hub-container {
  max-width: 1170px;
  padding-left: 10px;
  padding-right: 10px;
}

.article-hub-grid {
  display: grid;
  grid-template-columns: 337px minmax(0, 1fr);
  align-items: start;
}

.article-hub-image {
  padding-left: 0;
}

.article-hub-image img {
  border-radius: 10px;
  display: block;
  height: auto;
  width: 317px;
}

.article-hub-links {
  padding: 19px 0 0 20px;
}

.article-hub-links a {
  display: block;
  font-size: 14px;
  line-height: 25.2px;
}

/* ===================================
   Short stories page
   =================================== */

.short-story-main {
  min-height: 0;
}

.short-title-section {
  padding: 18px 0 32px;
}

.short-title-section h1 {
  font-family: 'Sansita', sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1.5;
}

.short-spacer-section {
  display: none;
}

.short-story-section {
  padding: 40px 0;
}

.short-story-container {
  max-width: 1170px;
}

.short-story-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 20px;
  align-items: center;
}

.short-story-cover {
  text-align: left;
}

.short-story-cover img {
  display: inline-block;
  height: auto;
  width: 66px;
}

.short-story-text p {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 25.2px;
  margin: 0;
  text-align: left;
}

.short-story-text {
  min-width: 0;
  padding-top: 0;
}

/* ===================================
   Writing tips page
   =================================== */

.writing-title-section {
  padding: 20px 0 0;
}

.writing-content-section {
  padding: 40px 0 0;
}

.writing-container {
  max-width: 1170px;
  padding-bottom: 40px;
  padding-left: 25px;
  padding-right: 25px;
}

.writing-main-heading {
  color: #444444;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 20px;
  text-align: center;
}

.writing-intro p,
.writing-tip p {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 25.2px;
  margin: 0 0 20px;
  text-align: left;
}

.writing-tips {
  display: grid;
  column-gap: 20px;
  align-items: start;
}

.writing-tips-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 109px;
}

.writing-tips-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 91px;
}

.writing-tip-header {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  column-gap: 15px;
  align-items: center;
  min-height: 118px;
}

.writing-tip-header img {
  display: block;
  height: auto;
  width: 80px;
}

.writing-tip-header h2 {
  color: #444444;
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 200;
  line-height: 19px;
  margin: 0;
  text-align: center;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  position: relative;
  top: 3px;
}

.writing-tip-header + p {
  margin-top: 20px;
}

/* ===================================
   Kreatives and DIY pages
   =================================== */

.creative-title-section {
  padding: 18px 0 0;
  text-align: center;
}

.creative-title-section h1 {
  font-family: 'Sansita', sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
}

.creative-content-section {
  padding: 40px 20px 11px;
}

.creative-grid {
  display: grid;
  grid-template-columns: repeat(2, 460px);
  column-gap: 20px;
  row-gap: 21px;
  justify-content: center;
}

.creative-figure {
  margin: 0;
}

.creative-figure img {
  display: block;
  height: auto;
  width: 460px;
}

.creative-figure figcaption {
  color: #444444;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 25.2px;
  margin-top: 12px;
  text-align: center;
}

.creative-copy {
  padding: 12px 12px 0;
}

.creative-copy p {
  margin: 0;
  text-align: left;
}

.creative-quote,
.creative-author {
  color: #7a7a7a;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
}

.creative-quote-card {
  background: rgba(68, 68, 68, 0.07);
  border-left: 4px solid #444444;
  border-radius: 6px;
  box-sizing: border-box;
  margin-left: -12px;
  margin-right: -12px;
  padding: 14px 16px;
}

.creative-quote-card .creative-quote {
  color: #444444;
}

.creative-quote-card .creative-author {
  color: #965a00;
  margin-top: 14px !important;
}

.creative-author {
  margin-top: 20px !important;
}

.creative-body-copy {
  margin-left: -12px;
  margin-right: -12px;
  margin-top: 51px;
}

.creative-body-copy p {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 21.6px;
  margin: 0 0 21px;
}

.creative-figure:nth-of-type(3) img {
  height: 377px;
  object-fit: cover;
}

.creative-figure:nth-of-type(4) img,
.creative-figure:nth-of-type(5) img {
  height: 346px;
  object-fit: cover;
}

.diy-main {
  min-height: 0;
}

.diy-title-section {
  padding: 18px 0 79px;
  text-align: center;
}

.diy-detail-main > .diy-title-section {
  padding: 20px 0 0;
}

.diy-title-section h1 {
  font-family: 'Sansita', sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
}

.diy-hub-section {
  padding: 0 0 10px;
}

.diy-hub-container {
  max-width: 1170px;
  padding-left: 25px;
  padding-right: 25px;
}

.diy-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 550px);
  column-gap: 20px;
}

.diy-link-grid a,
.diy-link-grid img {
  display: block;
}

.diy-link-grid img {
  height: 240px;
  object-fit: fill;
  width: 550px;
}

/* ===================================
   DIY detail pages
   =================================== */

.diy-detail-main {
  min-height: 0;
}

.diy-detail-section {
  padding: 126px 0 30px;
}

.fish-detail {
  padding-bottom: 30px;
}

.diy-detail-container {
  max-width: 1170px;
  padding-left: 25px;
  padding-right: 25px;
}

.diy-detail-title-wrap {
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.diy-detail-title {
  color: #444444;
  font-family: 'Sansita', sans-serif;
  font-size: 59px;
  font-style: italic;
  font-weight: 800;
  line-height: 59px;
  margin: 0;
  text-align: center;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.gruss-detail .diy-detail-title {
  margin-bottom: 90px;
}

.fish-detail .diy-detail-title {
  margin-bottom: 40px;
}

.diy-two-column-wide {
  display: grid;
  grid-template-columns: 360px 740px;
  column-gap: 20px;
  align-items: start;
}

.diy-two-column-wide.reversed {
  grid-template-columns: 740px 360px;
}

.diy-three-image-row {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  column-gap: 20px;
  align-items: start;
  margin-top: 20px;
}

.diy-two-image-row {
  display: grid;
  grid-template-columns: repeat(2, 550px);
  column-gap: 20px;
  align-items: start;
  margin-top: 20px;
}

.diy-detail-figure {
  margin: 0;
}

.diy-detail-figure img {
  display: block;
  object-fit: cover;
}

.diy-detail-figure figcaption {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 25.2px;
  margin-top: 13px;
  text-align: center;
}

.diy-detail-text,
.diy-detail-list {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
  text-align: left;
}

.diy-detail-text {
  margin: 0;
}

.diy-arial {
  font-family: Arial, sans-serif;
}

.diy-detail-list {
  margin: 20px 0 0 20px;
  padding: 0;
}

.diy-detail-list li {
  margin: 0;
  padding: 0;
}

.gruss-opening-large {
  margin-top: 40px;
}

.gruss-material {
  margin-top: 89px;
}

.gruss-heart {
  margin-top: 72px;
}

.gruss-frame {
  margin-top: 90px;
}

.gruss-card {
  margin-top: 90px;
}

.gruss-card-note {
  margin-top: 16px;
}

.gruss-card .diy-detail-figure figcaption {
  margin-top: 12px;
}

.gruss-frame + .diy-two-image-row .diy-detail-figure:first-child figcaption,
.gruss-final-row .diy-detail-figure:nth-child(2) figcaption {
  margin-top: 14px;
}

.diy-detail-closing {
  color: #444444;
  font-family: 'Sansita', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 75.6px;
  margin: 90px 0 0;
  text-align: center;
}

.fish-material-note {
  margin-top: 20px;
}

.fish-steps {
  margin-top: 71px;
}

.fish-steps .diy-detail-figure figcaption {
  margin-top: 14px;
}

.fish-more {
  margin-top: 90px;
}

.fish-song {
  margin-top: 20px;
}

.fish-final-figure {
  margin-top: 19px;
}

.fish-final-figure img {
  margin: 0 auto;
}

.fish-final-figure figcaption {
  width: 100%;
}

.img-360-205 { height: 205px; width: 360px; }
.img-360-210 { height: 210px; width: 360px; }
.img-360-271 { height: 271px; width: 360px; }
.img-360-354 { height: 354px; width: 360px; }
.img-360-479 { height: 479px; width: 360px; }
.img-360-481 { height: 481px; width: 360px; }
.img-360-525 { height: 525px; width: 360px; }
.img-360-781 { height: 781px; width: 360px; }
.img-550-517 { height: 517px; width: 550px; }
.img-550-732 { height: 732px; width: 550px; }
.img-550-834 { height: 834px; width: 550px; }
.img-550-845 { height: 845px; width: 550px; }
.img-740-800 { height: 800px; width: 740px; }
.img-1024-769 { height: 769px; width: 1024px; }

/* ===================================
   A Coaches Life page
   =================================== */

.coach-title-section {
  padding: 20px 0 0;
  text-align: center;
}

.coach-title-section h1 {
  font-family: 'Sansita', sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
}

.coach-content-section {
  padding: 40px 0 40px;
}

.coach-container {
  max-width: 1170px;
  padding-left: 25px;
  padding-right: 25px;
}

.coach-subtitle {
  color: #444444;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 70px;
  text-align: center;
}

.coach-intro-grid {
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
  column-gap: 20px;
  align-items: start;
}

.coach-position-image {
  border-radius: 10px;
  display: block;
  height: 195px;
  object-fit: cover;
  width: 288px;
}

.coach-intro-heading {
  color: #444444;
  font-family: Arial, sans-serif;
  font-size: 18.2px;
  font-weight: 400;
  line-height: 18.2px;
  margin: 0 0 20px;
  text-align: left;
}

.coach-intro-heading strong {
  font-weight: 700;
}

.coach-intro-copy p {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 25.2px;
  margin: 0;
  text-align: left;
}

.coach-body {
  margin-top: 39px;
}

.coach-body p {
  color: #7a7a7a;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 25.2px;
  margin: 0 0 20px;
  text-align: left;
}

/* ===================================
   Search page
   =================================== */

.search-page-main {
  min-height: 0;
}

.search-title-section {
  padding-bottom: 0;
}

.search-page-section {
  padding: 28px 20px 80px;
}

.search-page-container {
  margin: 0 auto;
  max-width: 940px;
}

.search-page-form {
  display: flex;
  margin: 0 0 40px;
  max-width: 520px;
}

.search-page-form input[type="search"] {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  color: #444444;
  flex: 1;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  height: 42px;
  padding: 8px 12px;
}

.search-page-form button {
  background-color: #444444;
  border: 1px solid #444444;
  color: #ffffff;
  cursor: pointer;
  height: 42px;
  padding: 0 16px;
}

.search-result {
  border-bottom: 1px solid #d8d8d8;
  padding: 0 0 22px;
  margin: 0 0 22px;
}

.search-result h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.search-result p,
.search-empty {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 25.2px;
  margin: 0;
  text-align: left;
}

/* ===================================
   Podcast page
   =================================== */

.podcast-hero {
  padding: 20px 20px 30px;
  text-align: center;
}

.podcast-hero .container {
  align-items: flex-end;
  display: inline-flex;
  justify-content: center;
}

.podcast-hero h1 {
  margin: 0;
  position: relative;
  top: 8px;
}

.podcast-radio-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  margin-left: 20px;
  padding: 0;
}

.podcast-radio-toggle img {
  display: block;
  height: auto;
  width: 100px;
}

.podcast-radio-toggle:focus-visible {
  outline: 2px solid #965a00;
  outline-offset: 4px;
}

.podcast-intro-section {
  padding: 40px 20px 10px;
}

.podcast-intro-section p {
  color: #7a7a7a;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 10px;
  text-align: left;
}

.podcast-audio-section {
  padding: 30px 20px 0;
}

.podcast-episode {
  margin: 0 0 40px;
  padding: 0 10px;
}

.podcast-episode h2 {
  color: #444444;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 21px;
}

.podcast-episode audio {
  display: block;
  height: 40px;
  width: 100%;
}

.podcast-gallery-section {
  padding: 0;
}

.podcast-gallery {
  display: grid;
  grid-template-columns: repeat(2, 550px);
  column-gap: 20px;
  align-items: start;
  justify-content: center;
  max-width: 1170px;
  padding: 0;
}

.podcast-gallery-column {
  padding: 0;
}

.podcast-gallery figure {
  margin: 0 0 20px;
  text-align: center;
}

.podcast-gallery-frame {
  box-sizing: border-box;
  display: block;
  width: 550px;
}

.podcast-gallery-image {
  border: 1px solid #444444;
  border-radius: 10px;
  box-sizing: border-box;
  display: block;
  height: auto;
  width: 100%;
}

.podcast-gallery figcaption {
  color: #444444;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 10px;
}

/* ===================================
   Buttons
   =================================== */

.btn {
  display: inline-block;
  background-color: #965a00;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background-color: #7a4b00;
  color: #ffffff;
  text-decoration: none;
}

/* ===================================
   Footer
   =================================== */

/* Footer Impressum/Kontakt block */
.footer-main {
  width: 100%;
  background-color: #444444;
  color: #ffffff;
  padding: 18px 20px 20px;
}

.footer-main .container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* Footer bottom admin block */
.footer-admin {
  width: 100%;
  background-color: #353535;
  color: #ffffff;
  padding: 13px 20px;
  font-size: 0.85em;
  text-align: center;
}

.footer-admin p {
  margin: 0;
  text-align: center;
}

.footer-admin a {
  color: #ffffff;
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 0;
  padding-left: 0;
}

.footer-section h3::before {
  content: "|";
  display: inline-block;
  margin-right: 12px;
  color: #ffffff;
  font-weight: 700;
}

.footer-section p {
  color: #b0b0b0;
  font-size: 0.88em;
  margin-bottom: 0;
  text-align: left;
}

.footer-section a {
  color: #ffffff;
}

/* ===================================
   Responsive – shared elements only
   =================================== */

/* Tablet: 659px - 1100px */
@media (min-width: 659px) and (max-width: 1100px) {
  nav a {
    width: 46px;
  }

  .nav-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    opacity: 0.9;
  }

  .nav-text {
    display: none;
  }

  h1 {
    font-size: 70px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  }

  h2 {
    font-size: 1.5em;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .publication-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .publication-column + .publication-column {
    border-left: 0;
    border-top: 2px solid #34495e;
    padding-left: 0;
    padding-top: 36px;
  }

  .podcast-gallery {
    grid-template-columns: 1fr;
  }

  .podcast-gallery-frame {
    max-width: 100%;
    width: 100%;
  }

  .press-image-stack .press-image-wide,
  .press-image-stack .press-image-narrow {
    height: auto;
  }

  .article-hub-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-hub-image,
  .article-hub-links {
    padding-left: 0;
  }

  .writing-tips,
  .writing-tips-three,
  .writing-tips-two {
    grid-template-columns: 1fr;
    row-gap: 36px;
    margin-top: 48px;
  }

  .creative-grid,
  .diy-link-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .creative-figure img,
  .diy-link-grid img {
    height: auto;
    max-width: 100%;
    width: 100%;
  }

  .home-topic-row,
  .split-grid,
  .football-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .home-photo,
  .home-photo img,
  .split-figure img,
  .about-container,
  .about-figure img {
    height: auto;
    max-width: 100%;
    width: 100%;
  }

  .about-intro-grid,
  .about-football-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .about-block h2,
  .about-milestones li {
    width: auto;
  }

  .about-milestones-block {
    margin-left: -10px;
    margin-right: -10px;
  }

  .diy-two-column-wide,
  .diy-two-column-wide.reversed,
  .diy-three-image-row,
  .diy-two-image-row {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .diy-detail-figure img,
  .fish-final-figure img {
    height: auto;
    max-width: 100%;
    width: 100%;
  }

  .coach-intro-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .coach-position-image {
    height: auto;
    max-width: 288px;
    width: 100%;
  }

  .footer-main .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-hero {
    background-position: 24% 50%;
    background-size: auto 100%;
    height: clamp(448px, 86vw, 826px);
  }

  .home-title-divider-section,
  .home-topic-section {
    display: none;
  }

  .home-tablet-icons-section {
    display: flex;
    gap: 60px;
    justify-content: center;
    padding: 14px 0 67px;
  }

  .home-tablet-icons-section img {
    height: auto;
    width: 58.4px;
  }

  .home-tablet-icons-section a:nth-child(3) img {
    position: relative;
    top: -4px;
  }

  .home-content-section {
    margin-bottom: 0;
    margin-top: 0;
    padding: 0 10px 17px;
  }

  .portfolio-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .portfolio-heading {
    max-width: 100%;
    width: auto;
  }

  .publication-grid {
    align-items: start;
    column-gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
  }

  .publication-column {
    min-width: 0;
    padding: 0 10px;
  }

  .publication-column + .publication-column {
    border-left: 0;
    border-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
  }

  .publication-column h2 {
    border-bottom: 2px solid #444444;
    margin-bottom: 32px;
    padding-bottom: 4px;
  }

  .publication-column h4 {
    max-width: calc(100% - 63px);
    width: auto;
  }

  .publication-column ul {
    max-width: calc(100% - 83px);
    width: auto;
  }

  .footer-main .container {
    grid-template-columns: 260px 1fr;
    gap: 40px;
  }
}

/* Mobile: 658px and below — hamburger menu + centered logo */
@media (max-width: 658px) {
  .about-hero {
    background-position: 8% 50%;
    background-size: auto 140%;
    height: clamp(420px, 100vw, 520px);
    margin-bottom: 0;
  }

  .about-mobile-title-section {
    display: block;
    margin-bottom: 30px;
    padding: 0;
  }

  .header-container {
    height: 63px;
    justify-content: center;
    position: relative;
  }

  .logo {
    margin: 0 auto;
    height: 63px;
    display: flex;
    align-items: center;
    padding-right: 20px;
  }

  .logo img {
    transform: none;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    margin: 0;
    z-index: 9999;
    background-color: #ffffff;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: none;
    box-shadow: none;
  }

  nav.active {
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    transform: translateX(0);
  }

  .nav-close {
    display: flex;
    align-items: center;
    position: relative;
    height: 40px;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 100%;
    font-size: 16px;
    color: #444444;
    font-weight: 400;
    justify-content: center;
  }

  .nav-close i {
    position: absolute;
    left: 20px;
    font-size: 12px;
  }

  .nav-social {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 51px;
    order: 1;
    padding: 0;
    width: 100%;
  }

  .nav-social a {
    align-items: center;
    color: #444444;
    display: flex;
    font-size: 20px;
    height: 51px;
    justify-content: center;
    padding: 0;
    width: 100%;
    border-bottom: none;
  }

  .nav-search {
    order: 2;
    padding: 20px;
    width: 100%;
  }

  .nav-search > a {
    display: none;
  }

  .nav-search-panel {
    display: none;
  }

  .mobile-search-form {
    display: block;
    height: 40px;
    position: relative;
    width: 260px;
  }

  .mobile-search-form input[type="search"] {
    background-color: #f2f2f2;
    border: 1px solid #dddddd;
    color: #333333;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    height: 40px;
    line-height: 25.2px;
    padding: 6px 45px 6px 12px;
    width: 100%;
  }

  .mobile-search-form button {
    align-items: center;
    background: transparent;
    border: 0;
    color: #777777;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
  }

  .nav-overlay.active {
    display: block;
  }

  nav ul {
    align-items: stretch;
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  nav li {
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
  }

  nav > ul > li > a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.035);
    color: #444444;
    display: flex;
    font-size: 15px;
    gap: 16px;
    height: auto;
    line-height: 27px;
    min-height: 51px;
    padding: 12px 20px;
    justify-content: flex-start;
    position: relative;
    width: 100%;
  }

  .nav-icon {
    display: inline-block;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  .nav-text {
    display: inline;
  }

  .dropdown > a {
    padding-right: 60px;
  }

  .dropdown-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: #444444;
    cursor: pointer;
    display: flex;
    font-size: 32px;
    font-weight: 300;
    height: 51px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    z-index: 2;
  }

  .dropdown-toggle::before {
    content: "+";
  }

  .dropdown.active > a {
    color: #965a00;
  }

  .dropdown.active > .dropdown-toggle {
    color: #965a00;
  }

  .dropdown.active > .dropdown-toggle::before {
    content: "-";
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: #ffffff;
    min-width: 0;
    padding: 0;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  nav .dropdown-menu li {
    border-bottom: 0;
    display: block;
    height: auto;
    width: 100%;
  }

  nav .dropdown-menu a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.035);
    color: #444444;
    display: block;
    font-size: 15px;
    height: auto;
    line-height: 27px;
    min-height: 51px;
    padding: 12px 20px 12px 35px;
    width: 100%;
  }

  nav .dropdown-menu a::before {
    content: "\f105";
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    font-weight: 900;
    margin-right: 15px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 1;
    position: absolute;
    left: 10px;
  }

  .menu-toggle-label {
    display: inline;
    font-size: 0.85em;
    font-weight: 900;
  }

  .social-icons {
    display: none;
  }

  h1 {
    font-size: 24px;
    line-height: 1.5;
    text-align: left;
    background-color: #444444;
    color: #f2f2f2;
    text-shadow: none;
    padding: 10px;
  }

  .podcast-hero {
    padding: 20px 0 0;
  }

  .podcast-hero .container {
    display: block;
    max-width: none;
    padding: 0;
  }

  .podcast-hero h1 {
    top: 0;
  }

  .podcast-radio-toggle {
    display: none;
  }

  .short-title-section {
    padding: 20px 0 0;
  }

  .short-story-cover {
    text-align: left;
  }

  .diy-detail-section {
    padding-top: 40px;
  }

  .diy-detail-title {
    background: transparent;
    color: #444444;
    font-size: clamp(20px, 7vw, 42px);
    line-height: 1.1;
    max-width: 100%;
    padding: 0;
    text-align: center;
    text-shadow: none;
  }

  .contact-title,
  .privacy-main .legal-container h1 {
    background-color: #444444;
    color: #f2f2f2;
    font-family: 'Sansita', sans-serif;
    font-style: italic;
    font-weight: 900;
    line-height: 1.5;
    padding: 10px;
    text-align: left;
    text-shadow: none;
  }

  .contact-title {
    margin: 0 0 30px;
    width: 100%;
  }

  .privacy-main .legal-container h1 {
    margin: 0 -10px 40px;
    width: calc(100% + 20px);
  }

  h2 {
    font-size: 1.2em;
  }

  .two-column,
  .publication-grid,
  .article-hub-grid,
  .writing-tips,
  .writing-tips-three,
  .writing-tips-two,
  .creative-grid,
  .diy-link-grid,
  .home-topic-row,
  .split-grid,
  .football-grid,
  .about-intro-grid,
  .about-football-grid,
  .diy-two-column-wide,
  .diy-two-column-wide.reversed,
  .diy-three-image-row,
  .diy-two-image-row,
  .coach-intro-grid,
  .podcast-gallery {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .publication-grid {
    row-gap: 0;
  }

  .publication-column + .publication-column {
    border-left: 0;
    border-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
  }

  .publication-column + .publication-column::before {
    display: none;
  }

  .publication-column h4 {
    max-width: calc(100% - 63px);
    width: auto;
  }

  .publication-column ul {
    max-width: calc(100% - 83px);
    width: auto;
  }

  .podcast-gallery-frame,
  .creative-figure img,
  .diy-link-grid img,
  .home-photo,
  .home-photo img,
  .split-figure img,
  .about-container,
  .about-figure img,
  .diy-detail-figure img,
  .fish-final-figure img {
    height: auto;
    max-width: 100%;
    width: 100%;
  }

  .coach-position-image {
    height: auto;
    max-width: 288px;
    width: 100%;
  }

  .about-block h2,
  .about-milestones li {
    width: auto;
  }

  .about-milestones-block {
    margin-left: -10px;
    margin-right: -10px;
  }

  .footer-main .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-title-section {
    padding-bottom: 0;
  }

  .home-title-section,
  .home-title-divider-section,
  .home-topic-section {
    display: none;
  }

  .home-content-section {
    margin-bottom: 0;
    margin-top: 0;
    padding: 40px 10px 0;
  }

  .home-photo {
    margin: 0 auto;
  }

  .home-mobile-card-section {
    display: block;
    padding: 20px 10px 40px;
  }

  .home-mobile-card {
    background-color: rgba(198, 224, 247, 0);
    border: 2px solid #444444;
    border-radius: 8px;
    color: #444444;
    overflow: hidden;
    width: 100%;
  }

  .home-mobile-card-header {
    align-items: center;
    border-bottom: 2px solid #444444;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 56px;
    padding: 6px 10px;
  }

  .home-mobile-card-header h2 {
    color: #444444;
    font-family: 'Broadway NQ', 'SansitaOne', 'Sansita', sans-serif;
    font-size: clamp(28px, 8vw, 38px);
    font-weight: normal;
    line-height: 1;
    margin: 0;
    min-width: 0;
    text-align: left;
  }

  .home-mobile-card-icons {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: flex-end;
  }

  .home-mobile-card-icons a,
  .home-mobile-card-icons img {
    display: block;
  }

  .home-mobile-card-icons img {
    height: 30px;
    width: 30px;
  }

  .home-mobile-card-body {
    align-items: center;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    min-height: 180px;
    position: relative;
  }

  .home-card-slides {
    min-height: 150px;
    overflow: hidden;
    position: relative;
  }

  .home-card-track {
    display: flex;
    min-height: 150px;
    transition: transform 0.5s ease;
    transform: translateX(-100%);
    will-change: transform;
  }

  .home-card-slide {
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    justify-content: center;
    min-width: 100%;
    padding: 16px 10px 10px;
    position: relative;
  }

  .home-card-slide.is-active {
    position: relative;
  }

  .home-card-slide ul {
    color: #444444;
    font-family: 'Roboto Slab', serif;
    font-size: 19.5px;
    line-height: 1.35;
    margin: 0 auto;
    max-width: 460px;
    padding-left: 18px;
    position: relative;
    text-align: left;
    z-index: 1;
  }

  .home-card-slide li {
    margin-bottom: 2px;
  }

  .home-card-watermark {
    height: 177px;
    left: 50%;
    opacity: 0.12;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 177px;
    z-index: 0;
  }

  .home-card-arrow {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgba(68, 68, 68, 0.75);
    cursor: pointer;
    display: flex;
    font-size: 34px;
    height: 100%;
    justify-content: center;
    padding: 0;
    width: 42px;
  }

  .home-card-arrow:focus-visible {
    outline: 2px solid #965a00;
    outline-offset: -4px;
  }

  .home-card-dots {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 0 0 12px;
  }

  .home-card-dots button {
    background-color: rgba(68, 68, 68, 0.35);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    height: 7px;
    padding: 0;
    width: 7px;
  }

  .home-card-dots button.is-active {
    background-color: #444444;
  }

  .search-page-section {
    padding: 28px 20px 60px;
  }

  .search-page-form {
    max-width: 100%;
  }

  .portfolio-content-section {
    padding-top: 12px;
  }

  .portfolio-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .portfolio-heading {
    margin-left: 15px;
    margin-right: 15px;
    max-width: calc(100% - 30px);
    width: auto;
  }

  .publication-grid {
    width: 100%;
  }

  .publication-column {
    padding-left: 10px;
    padding-right: 10px;
  }

  .publication-column + .publication-column {
    padding-left: 10px;
    padding-right: 10px;
  }

  .portfolio-heading h2,
  .publication-column h2 {
    font-size: 22px;
  }

  .publication-column h2 {
    margin-left: 15px;
    margin-right: 15px;
  }

  .publication-column ul {
    margin-left: 22px;
  }

  .section-title {
    padding: 0;
    margin-top: 20px;
  }
}

@media print {
  header, footer, nav {
    display: none;
  }

  body {
    background-color: #ffffff;
  }

  .content-section {
    box-shadow: none;
    page-break-inside: avoid;
  }
}
