@font-face {
  font-family: "Oswald";
  src: url("../fonts/oswald-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --coral: #1b618c;
  --coral-dark: #124b6e;
  --purple: #4898c7;
  --purple-dark: #3b87b3;
  --acid: #cb4b57;
  --gold: #23a569;
  --cream: #eeece4;
  --ink: #080808;
  --white: #fff;
  --muted: #686868;
  --border: #bdb9ae;
  --font-display: "Oswald", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: "Archivo", Arial, Helvetica, sans-serif;
  --shadow-offset: 4px 4px 0 var(--purple);
  --header-height: 116px;
  --transition: 180ms ease;
  --section-space: clamp(4.5rem, 8vw, 8rem);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.offcanvas-open,
body.search-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

a:hover {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--purple);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1,
.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 1.2;
  text-transform: uppercase;
  margin: 1.5rem 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1.1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-bottom: 3px solid currentColor;
}

.lead {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-block: 0.25rem;
  font-weight: 700;
  border-bottom: 3px solid var(--acid);
  text-decoration: none;
}

.text-link i {
  transition: transform var(--transition);
}

.text-link:hover i {
  transform: translateX(0.25rem);
}

.text-link--light {
  color: var(--white);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-weight: 700;
  transition: color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-acid {
  color: var(--ink) !important;
  background: var(--acid) !important;
  box-shadow: var(--shadow-offset) !important;
}

.btn-acid:hover,
.btn-acid:focus {
  color: var(--ink);
  background: var(--purple);
}

.btn-coral {
  color: var(--white);
  background: var(--coral);
  box-shadow: var(--shadow-offset);
}

.btn-coral:hover,
.btn-coral:focus {
  color: var(--white);
  background: var(--coral-dark);
}

.btn-purple {
  color: var(--white);
  background: var(--purple);
  box-shadow: 4px 4px 0 var(--coral);
}

.btn-purple:hover,
.btn-purple:focus {
  color: var(--white);
  background: var(--purple-dark);
}

.btn-dark {
  color: var(--white);
  background: var(--ink);
}

.btn-dark:hover,
.btn-dark:focus {
  color: var(--white);
  background: var(--purple);
}

.btn-white {
  color: var(--ink);
  background: var(--white);
  box-shadow: none !important;
  border: none !important;
}

.btn-white:hover,
.btn-white:focus {
  color: var(--ink);
  background: var(--acid);
  transform: none !important;
  border: none !important;
}

.btn-outline-dark {
  color: var(--ink);
  background: transparent;
}

.btn-outline-dark:hover {
  color: var(--white);
  background: var(--ink);
}

.utility-bar {
  height: 32px;
  color: var(--white);
  background: var(--ink);
  font-size: .85rem;
  font-weight: 600;
}

.utility-bar .container {
  height: 100%;
}

.utility-bar a,
.utility-link {
  color: var(--cream);
  border: 0;
  background: transparent;
  text-decoration: none;
}

.utility-bar a:hover,
.utility-link:hover {
  color: var(--acid);
}

.utility-bar .dropdown-menu .dropdown-item {
  color: var(--ink);
}

.site-header {
  position: relative;
  z-index: 1030;
  color: var(--ink);
  background: var(--coral);
  transition: box-shadow var(--transition), transform var(--transition);
  border-bottom: 1px solid var(--purple);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.15);
}

.header-main {
  min-height: var(--header-height);
}

.header-main .brand-logo,
.site-footer .brand-logo {
  height: 90px;
  width: auto;
}

.offcanvas-header .brand-logo {
  height: 74px;
  width: auto;
}

.mobile-nav__utility {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav__utility a {
  color: inherit;
  font-size: 0.875rem;
  text-decoration: none;
}

.mobile-nav__utility a:hover {
  text-decoration: underline;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 0.78;
  letter-spacing: -0.045em;
  text-decoration: none;
  margin: 1rem 0;
}

.brand--light {
  color: var(--white);
}

.brand-flip {
  display: block;
  width: 90px;
  height: 105px;
  perspective: 900px;
  text-decoration: none;
}

.brand-flip__inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Yatay eksende kart çevirme efekti */
.brand-flip:hover .brand-flip__inner,
.brand-flip:focus-visible .brand-flip__inner {
  transform: rotateY(180deg);
}

.brand-flip__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.brand-flip__front {
  transform: rotateY(0deg);
}

.brand-flip__back {
  transform: rotateY(180deg);
}

.brand-flip__front img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 90px;
  object-fit: contain;
}

.brand-flip__text {
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-flip:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 5px;
}

/* Hareket azaltma tercihi olan kullanıcılar */
@media (prefers-reduced-motion: reduce) {
  .brand-flip__inner {
      transition-duration: 0.01ms;
  }
}

.desktop-nav .nav {
  gap: clamp(0.2rem, 1vw, 0.85rem);
  margin: 0 clamp(0.2rem, 1vw, 0.85rem);
}

.desktop-nav .nav-link {
  padding: 0.65rem 0.5rem;
  color: var(--white);
  border: 0;
  background: transparent;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active,
.desktop-nav .nav-link:focus {
  color: var(--acid);
  text-decoration: underline;
  text-decoration-color: var(--acid);
  text-decoration-thickness: 4px;
}

.desktop-nav .dropdown-toggle::after {
  vertical-align: 0.18em;
}

.dropdown-menu {
  padding: 0.5rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 5px 5px 0 var(--purple);
  z-index: 1040;
}

.dropdown-item {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.8rem;
  font-weight: 700;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--ink);
  background: var(--acid);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: -0.5rem;
  left: calc(100% + 0.6rem);
}

.dropdown-submenu.is-open > .dropdown-menu {
  display: block;
}

.icon-btn,
.menu-toggle {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 0;
  background: transparent;
}

.menu-toggle {
  gap: 4px;
  align-content: center;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
}

.mobile-nav {
  width: min(92vw, 420px);
  color: var(--white);
  background: var(--purple);
}

.mobile-nav .offcanvas-header {
  padding: 1.25rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.25);
}

.mobile-nav .offcanvas-body {
  padding: 1rem 1.25rem 2rem;
}

.mobile-menu,
.mobile-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-menu > li {
  border-bottom: 1px solid rgb(255 255 255 / 0.24);
}

.mobile-menu a,
.mobile-submenu-toggle {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  color: var(--white);
  border: 0;
  background: transparent;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
}

.mobile-menu ul {
  padding: 0 0 0.8rem 1rem;
}

.mobile-menu ul a {
  min-height: 44px;
  color: var(--acid);
  font-size: 0.95rem;
}

.mobile-submenu-toggle i {
  transition: transform var(--transition);
}

.mobile-submenu-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.search-panel {
  position: fixed;
  z-index: 1085;
  inset: 0;
  padding-top: clamp(4rem, 10vw, 8rem);
  color: var(--white);
  background: rgb(8 8 8 / 0.96);
}

.search-panel[hidden] {
  display: none;
}

.search-panel__inner {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

.search-panel label {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
}

.search-panel .form-control {
  min-height: 64px;
  border: 0;
  border-radius: 0;
}

.search-panel__close {
  position: absolute;
  top: -3rem;
  right: 0;
}

.home-hero {
  overflow: hidden;
}

.home-hero-carousel {
  position: relative;
}

/* Slayt yüksekliklerinin değişmesini engeller */
.home-hero-carousel .carousel-item > .row {
  min-height: 600px;
}

/* Geçiş */
.home-hero-carousel .carousel-item {
  transition: transform 0.75s ease-in-out;
}

/* H1 ve diğer slaytlardaki H2 aynı görünsün */
.home-hero__title {
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  line-height: 1.2;
  margin: 1.5rem 0;
}

.home-hero__title span {
  display: block;
  color: var(--white);
}

/* Okların Bootstrap varsayılan genişliğini sıfırla */
.home-hero-carousel__control {
  top: 50%;
  bottom: auto;
  width: 52px;
  height: 52px;
  z-index: 5;
  opacity: 1;
  transform: translateY(-50%);
}

.home-hero-carousel__control--prev {
  left: -76px;
}

.home-hero-carousel__control--next {
  right: -76px;
}

.home-hero-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 50%;
  transition:
      color 0.25s ease,
      background-color 0.25s ease,
      transform 0.25s ease;
}

.home-hero-carousel__control:hover .home-hero-carousel__arrow,
.home-hero-carousel__control:focus-visible .home-hero-carousel__arrow {
  color: var(--white);
  background-color: var(--ink);
  transform: scale(1.06);
}

/* Alt göstergeler */
.home-hero-carousel__indicators {
  right: auto;
  bottom: -20px;
  left: 50%;
  gap: 8px;
  width: auto;
  margin: 0;
  transform: translateX(-50%);
}

.home-hero-carousel__indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  margin: 0;
  background-color: transparent;
  border: 2px solid var(--ink);
  border-radius: 50%;
  opacity: 1;
}

.home-hero-carousel__indicators .active {
  background-color: var(--ink);
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(4rem, 9vw, 8rem);
  color: var(--white);
  background: var(--coral);
}

.page-hero--compact {
  padding-block: 3rem 4rem;
}

.page-hero h1 {
  max-width: 1100px;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.breadcrumb-item a,
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: inherit;
}

.content-section,
.article-layout {
  padding-block: var(--section-space);
}

.event-layout {
  padding-block: var(--section-space);
  text-align: justify;
}

.content-section--cream {
  background: var(--cream);
}

.section-intro {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-intro p:last-child {
  font-size: 1.12rem;
}

.section-heading {
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.mt-section {
  margin-top: var(--section-space);
}

.newsletter-band {
  padding-block: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  background: var(--purple);
}

.newsletter-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 0;
}

.newsletter-band .form-control,
.newsletter-band .btn {
  min-height: 54px;
}

.support-cta {
  padding-block: clamp(4rem, 7vw, 7rem);
  color: var(--ink);
  background: var(--coral);
}

.support-photo {
  max-width: 570px;
  margin-inline: auto;
}

.support-photo img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  object-position: center;
}

.support-copy {
  max-width: 530px;
  padding: clamp(2rem, 5vw, 4rem);
}

.support-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  text-transform: uppercase;
}

.support-copy > p:not(.eyebrow) {
  max-width: 390px;
  font-size: 1.15rem;
  font-weight: 700;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 2rem;
}

.donation-grid a {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 0.5rem;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--acid);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--purple);
}

.donation-grid a:hover {
  background: var(--white);
}

.donation-grid__other {
  grid-column: 1 / -1;
}

.site-footer {
  padding-block: clamp(3.5rem, 6vw, 6rem) 2rem;
  color: var(--white);
  background: var(--ink);
}

.site-footer .brand {
  font-size: 1.2rem;
}

.footer-top {
  min-height: 116px;
}

.footer-address {
  margin: 0;
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.8;
  text-transform: none;
}

.footer-address strong {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-primary-nav,
.footer-secondary-nav,
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem clamp(1.1rem, 2.5vw, 2.5rem);
}

.footer-primary-nav a {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration-color: var(--acid);
  text-decoration-thickness: 2px;
}

.footer-primary-nav a:hover,
.footer-primary-nav a:focus-visible,
.footer-secondary-nav a:hover,
.footer-secondary-nav a:focus-visible,
.footer-legal-nav a:hover,
.footer-legal-nav a:focus-visible {
  color: var(--acid);
}

.footer-connect-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.footer-secondary-nav {
  gap: 1.25rem;
}

.footer-secondary-nav a,
.footer-legal-nav a {
  color: var(--white);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-legal-nav {
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
}

.footer-legal-nav span {
  width: 1px;
  height: 22px;
  display: inline-block;
  background: rgb(255 255 255 / 0.55);
}

.footer-copyright {
  font-size: 0.8rem;
}

.social-links,
.footer-bottom ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-links {
  display: flex;
  gap: 0.55rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  text-align: left;
}

.footer-bottom p {
  margin: 0;
}

.footer-disclaimer {
  padding: 0.28rem 0.8rem;
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 0.75);
  font-size: 0.62rem;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  z-index: 1040;
  right: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 2px solid var(--ink);
  background: var(--acid);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  z-index: 1090;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--white);
  border: 2px solid var(--white);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--purple);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
}

.form-control,
.form-select,
.input-group-text {
  min-height: 50px;
  border: 1px solid #7f7b72;
  border-radius: 0;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 0.25rem rgb(75 33 140 / 0.2);
}

textarea.form-control {
  min-height: 150px;
}

.demo-form label,
.donation-form legend {
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.form-card,
.donation-form {
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--purple);
}

.form-status {
  min-height: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #1e6d2f;
}

.form-status.is-error {
  color: #a91f16;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.filter-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 3rem;
  border: 2px solid var(--ink);
  background: var(--white);
}

.blog-category-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 3rem;
  border: 2px solid var(--ink);
  background: var(--white);
}

.filter-bar > div,
.filter-bar > label + select {
  min-width: min(100%, 320px);
}

.filter-bar label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

/* Yasal Sayfalar */
.legal div > ul > li {
  margin-top: 2rem;
}

.legal div > ul > li > ul > li,
.legal div > ul > li > ul > li > ul {
  margin-top: 1rem;
}

.legal ul li {
  list-style: none;
  margin-bottom: 1rem;
}

.legal li {
  text-align: justify;
}

.modal-content img {
  height: 18px;
  width: auto;
}

/* Arama Sonuçları */
.search-results {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200%;
  background-color: var(--bs-white);
  border-radius: var(--bs-border-radius);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-results.has-results {
  display: block;
  border: var(--bs-border-width) solid var(--bs-border-color);
}

.search-results li {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-results li:hover {
  background-color: var(--bs-gray-100);
}

.search-highlight {
  background-color: #ffff00;
  color: #000;
}

.tags a {
  font-size: 0.85rem;
  font-weight: 400;
  min-height: 30px;
  padding: 0.5rem 1rem;
}

@media print {
  .utility-bar,
  .site-header,
  .support-cta,
  .site-footer,
  .back-to-top,
  .cookie-banner,
  .btn,
  .search-panel {
    display: none !important;
  }

  body {
    font-size: 11pt;
  }

  .article-layout {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
