
/* ==========================================================================
   VARIABLES
   ========================================================================== */

:root {
  --wrapper-padding-inline: 1.25rem;
  --wrapper-max-width: 97.5rem;

  --clr-body: hsl(0, 0%, 0%);
  --clr-gray-200: hsl(0, 0%, 94%);
  --clr-gray-600: hsl(0, 0%, 46%);
  --clr-gray-700: hsl(0deg 0% 42.41%);
  --clr-accent: hsl(328, 100%, 44%);
  --clr-yellow: hsl(55, 100%, 50%);
}

/* ==========================================================================
   BASE / RESET
   ========================================================================== */

* {
  outline-color: var(--clr-accent);
}

body {
  font-family:
    "Titillium Web",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: minmax(0, 1fr);
  min-height: 100svh;
  color: var(--clr-body);
  font-size: 1.125rem;
}

body.user-is-tabbing *:focus-visible {
  outline: 3px solid #ff0000 !important;
  outline-offset: 3px;
}

a {
  color: var(--clr-accent);
  text-underline-offset: 0.1em;
  transition: all 0.2s ease;
}

@media(hover:hover) {
  a:hover {
    color: var(--clr-body);
  }
}

svg,
path {
  transition: stroke 0.2s ease;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

[type="search"] {
  outline-offset: 0;
}

img {
  height: auto;
}

p {
  margin: 0;
}

p,
li,
figcaption {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  font-weight: bold;
  line-height: 1.2;
}

h1,
.h1 {
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

/* Aspect ratios */
.ratio-3x2 {
  aspect-ratio: 3 / 2 !important;
}

/* Spacing */
.t-block-margin {
  margin-block: 2.5rem;
}

.mt-40 {
  margin-top: 2.5rem !important;
}

.mb-40 {
  margin-bottom: 2.5rem !important;
}

.gap-12 {
  gap: 0.75rem !important;
}

.gap-14 {
  gap: 0.875rem !important;
}

.gap-20 {
  gap: 1.25rem !important;
}

/* Text colors */
.text-gray-600 {
  color: var(--clr-gray-600) !important;
}

.text-gray-700 {
  color: var(--clr-gray-700) !important;
}

.text-main {
  color: var(--clr-accent) !important;
}

.text-yellow {
  color: var(--clr-yellow) !important;
}

/* Backgrounds */
.bg-gray-200 {
  background-color: var(--clr-gray-200) !important;
}

.bg-main {
  background-color: var(--clr-accent) !important;
}

.bg-yellow {
  background-color: var(--clr-yellow) !important;
}

/* Sections */
.section-margin {
  margin-block: 5rem;
}

/* Gutters (Bootstrap-like helpers) */
.g-36,
.gy-36 {
  --bs-gutter-y: 2.25rem !important;
}

.g-36,
.gx-36 {
  --bs-gutter-x: 2.25rem !important;
}

/* Layout containers */
.container {
  max-width: 97.5rem;
  padding-inline: 1.25rem;
}

.full-width-split-screen {
  display: grid;
  grid-template-columns:
    minmax(var(--wrapper-padding-inline), 1fr)
    minmax(0, calc(var(--wrapper-max-width) / 2))
    minmax(0, calc(var(--wrapper-max-width) / 2))
    minmax(var(--wrapper-padding-inline), 1fr);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

/* Font sizes */
.fs-18 {
  font-size: 1.125rem !important;
}

.fs-20 {
  font-size: 1.25rem !important;
}

.fs-22 {
  font-size: 1.375rem !important;
}

.fs-26 {
  font-size: 1.625rem !important;
}

.fs-28 {
  font-size: 1.75rem !important;
}

.fs-32 {
  font-size: 2rem !important;
}

.fs-34 {
  font-size: 2.125rem !important;
}

.fs-36 {
  font-size: 2.25rem !important;
}

.fs-52 {
  font-size: 3.25rem !important;
}

@media (min-width: 768px) {
  .fs-md-26 {
    font-size: 1.625rem !important;
  }

  .fs-md-34 {
    font-size: 2.125rem !important;
  }

  .fs-md-36 {
    font-size: 2.25rem !important;
  }

  .fs-md-52 {
    font-size: 3.25rem !important;
  }
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* ----- Skip Links ------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -1000em;
  left: 6px;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.9375rem 1.4375rem 0.875rem;
  background-color: #f0f0f1;
  color: #2271b1;
  z-index: 100000;
  line-height: normal;
  text-decoration: none;
}

.skip-link:focus {
  top: 7px;
  background-color: #f0f0f1;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}

/* ----- Popup ------------------------------------------------------- */
.spu-bg {
  backdrop-filter: blur(30px);
  background-color: rgba(0, 0, 0, 0.2);
}

.spu-content :is(h2, h3) {
  margin-bottom: 2.5rem !important;
  padding-bottom: 0.5rem !important;
}

@media (min-width: 1400px) {
  .spu-box {
    max-width: 67.5rem !important;
  }

  .spu-container {
    padding: 2.5rem 3.75rem !important;
  }
}

/* ----- Help center ------------------------------------------------------- */

/* Powyżej 992px: tylko grid (slider rozebrany w JS) */
@media (min-width: 992px) {
  .t-help-center__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .t-help-center__grid {
    margin-right: -1.25rem !important;
  }
}

/* Slider (budowany w JS tylko < 992px) – paginacja (prostokątne kropki) */
.t-help-center__slider .swiper-pagination {
  position: static;
  margin-top: 2.5rem;
  display: flex;
  gap: 0.625rem;
}
.t-help-center__slider .swiper-pagination-bullet {
  width: 2rem;
  height: 0.5rem;
  margin: 0 !important;
  border-radius: 0;
  background: var(--clr-gray-200);
  opacity: 1;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}
.t-help-center__slider .swiper-pagination-bullet-active {
  background: var(--clr-accent);
}

.t-help-center__slider .swiper-slide {
  height: auto;
}

.t-help-center__header {
  margin-bottom: 2.5rem;
}

.t-help-center__card {
  padding: 1.625rem 1.875rem;
}

@media (max-width: 767.98px) {
  .t-help-center__card {
    padding: 0.875rem 1.25rem;
  }
}

.t-help-center__icon {
  height: 2.75rem;
  width: auto;
}

/* ----- Cookies ----------------------------------------------------------- */

#cmplz-document,
.editor-styles-wrapper .cmplz-unlinked-mode {
  max-width: initial;
}

#cmplz-cookiebanner-container {
  display: contents;
}

/* ----- Quick contact ----------------------------------------------------- */

.quick-contact {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 9999;

  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;

  text-decoration: none;
  transition:
    opacity 200ms ease,
    transform 200ms ease;

  background-color: var(--clr-accent);
  width: 4.125rem;
  height: 4.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: -4px 4px 12px 0px #3b3b3b4d;
}

.quick-contact.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quick-contact svg {
  width: 1.875rem;
  height: auto;
}

@media (hover: hover) {
  .quick-contact:hover {
    transform: translateY(-0.125rem);
  }
}

/* ----- Post article ------------------------------------------------------ */

.t-article-header,
.t-article__title {
  margin-bottom: 2.5rem;
}

.t-article-header .t-postcard__meta {
  gap: 0.375rem 1.5rem;
}

.t-article-content .wp-block-heading,
.t-article-content > :is(h2, h3, h4, h5, h6) {
  margin-block: 2.5rem;
}

.t-article-content > h2 {
  padding-bottom: 0.5rem;
}

.t-article-content .wp-block-image {
  margin-block: 2.5rem;
}

.t-article-content :is(ul, ol, p) {
  margin-bottom: 2rem;
}

.t-article-content > *:last-child {
  margin-bottom: 0;
}

.t-article-content .table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
  -webkit-overflow-scrolling: touch;
}

.t-article-content .table-wrap table {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.t-article-content .table-wrap thead th {
  background: #f8f8f8;
  font-weight: 600;
  padding: 1rem 1.125rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 2px solid var(--clr-accent);
}

.t-article-content .table-wrap td {
  padding: 1rem 1.125rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
  border-bottom: 1px solid #ececec;
}

.t-article-content .table-wrap tbody tr:nth-child(even) td {
  background: #FDFDFD;
}

.t-article-content .table-wrap tbody tr:last-child td {
  border-bottom: none;
}

/* ----- Table of contents ------------------------------------------------- */

.tauron-toc {
  margin-block: 1.875rem;
  padding: 0.875rem 1.25rem;
  background-color: var(--clr-gray-200);
}

@media (min-width: 768px) {
  .tauron-toc {
    padding: 1.875rem 2.5rem;
    margin-block: 2.625rem;
  }
}

.tauron-toc__title {
  margin-bottom: 1rem;
  padding-bottom: 0.375rem;
  font-size: 1.75rem;
}

.tauron-toc__title::after {
  width: 4.5rem;
}

@media (max-width: 767px) {
  .tauron-toc__title::after {
    width: 4.125rem;
  }
}

.tauron-toc__list {
  font-weight: 600;
  line-height: 1.2;
}

.tauron-toc__item + .tauron-toc__item {
  margin-top: 0.75rem;
}

.tauron-toc a {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) {
  .tauron-toc a:hover {
    color: var(--clr-accent);
  }
}

/* ----- Archive Posts Grid -------------------------------------------------------------- */

.t-archive-posts__grid {
  margin-top: 2.625rem;
  gap: 2.625rem 2.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(23.75rem, 100%), 1fr));
}

/* ----- Tags -------------------------------------------------------------- */

/* Tag archive */
.archive.tag h1::first-letter {
  text-transform: capitalize;
}

.t-tags {
  margin: 2.5rem -1.25rem 0 0;
}

.t-tags__item {
  display: block;
  padding: 0.375rem 0.75rem;
  background-color: var(--clr-accent);
  color: #fff;
  line-height: 1.2;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.t-tags__item::before {
  content: "#";
}

@media (max-width: 767.98px) {
  .t-tags {
    scrollbar-width: thin;
    scrollbar-color: var(--clr-accent) #f1f1f1;
  }

  .t-tags::-webkit-scrollbar {
    height: 6px;
  }

  .t-tags::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 999px;
  }

  .t-tags::-webkit-scrollbar-thumb {
    background: var(--clr-accent);
    border-radius: 999px;
    transition: background-color 0.2s linear;
  }

  .t-tags::-webkit-scrollbar-thumb:hover {
    background: #b80063;
  }
}

@media (hover: hover) {
  .t-tags__item:hover {
    background-color: var(--clr-body);
  }
}

/* ----- Search form ------------------------------------------------------- */

.t-search-advanced {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .t-search-advanced {
    padding: 2.5rem 3.75rem;
  }
}

.t-header-search__field {
  width: 100%;
}

.t-header-search__field,
.t-search-advanced .form-control,
.t-search-advanced .form-select {
  border-radius: 0;
  padding: 0.8125rem 1.375rem;
  background-color: transparent;
  border: 0.0625rem solid var(--clr-gray-600);
  line-height: 1.2;
  font-size: 1.125rem;
}

.t-search-advanced__group {
  display: grid;
  gap: 0.375rem;
}

.t-search-advanced input[type="search"] {
  padding-left: 3.625rem;
}

.t-search-advanced__grid {
  display: grid;
  gap: 1.25rem;
}

.t-search-advanced__group--button {
  justify-content: center;
}

.t-search-advanced__group--button .t-button {
  border: 1px solid var(--clr-accent);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

@media (hover: hover) {
  .t-search-advanced__group--button .t-button:hover {
    border-color: var(--clr-body);
  }
}

@media (min-width: 992px) {
  .t-search-advanced__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1400px) {
  .t-search-advanced__grid {
    grid-template-columns: 3fr 2fr 1fr 1fr auto;
    grid-template-rows: auto auto;
    align-items: end;
  }

  .t-search-advanced__group {
    grid-template-rows: subgrid;
    grid-row: 1 / span 2;
  }

  .t-search-advanced__group--button .t-button {
    grid-row: 2;
  }
}

@media (min-width: 992px) and (max-width: 1399.9808px) {
  .t-search-advanced__group--button {
    grid-column: span 2;
  }
}

/* Search topics */

.t-search-topics .t-tags__item {
  cursor: pointer;
}

.t-search-topics li:has(input:checked) .t-tags__item {
  background-color: #fff;
  color: var(--clr-body);
}
/* Search results list */
.t-search-results-list {
  gap: 2.625rem 2.25rem;
}

@media (min-width: 992px) {
  .t-search-results-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ----- Breadcrumbs ------------------------------------------------------- */

.rank-math-breadcrumb {
  font-size: 1rem;
}

.rank-math-breadcrumb a {
  text-decoration: none;
  color: inherit;
}

.user-is-tabbing .rank-math-breadcrumb a:focus-visible {
  outline-offset: -3px !important;
}

.rank-math-breadcrumb .last {
  font-weight: 600;
}

@media (hover: hover) {
  .rank-math-breadcrumb a:hover {
    color: var(--clr-accent);
  }
}

.rank-math-breadcrumb .separator {
  display: inline-block;
  font-size: 0;
  width: 0.8125rem;
  height: 0.8125rem;
  background: url(../img/icons/separator.svg) center/contain no-repeat;
  vertical-align: middle;
  margin-inline: 0.375rem;
}

/* ----- Post card --------------------------------------------------------- */

.t-postcard__link {
  gap: 0.75rem;
  color: inherit;
}

.t-postcard__media {
  aspect-ratio: 3 / 2;
}

.t-postcard__img {
  transition: scale 0.3s linear;
  will-change: scale;
}

.t-postcard__title {
  transition: color 0.3s linear;
  line-height: 1.4;
}

@media (hover: hover) {
  .t-postcard__link:hover .t-postcard__img {
    scale: 1.05;
  }

  .t-postcard__link:hover .t-postcard__title {
    color: var(--clr-accent);
  }
}

.t-postcard__meta {
  gap: 0.75rem;
}

.t-postcard__separator {
  width: 0.1875rem;
  height: 0.5rem;
  background-color: var(--clr-accent);
}

/* ----- Search results (link item) --------------------------------------- */

.t-search-results-list__link {
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid var(--clr-gray-600);
  transition: border-color 0.3s linear;
}

.t-search-results-list__link:hover {
  border-color: var(--clr-accent);
}

/* ----- Pagination -------------------------------------------------------- */

.navigation.pagination {
  margin-top: 3rem;
  justify-content: flex-end;
}

.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #eee;
  color: inherit;
  text-decoration: none;
}

.navigation.pagination .page-numbers.dots {
  background: transparent;
  width: auto;
  min-width: 2rem;
  padding: 0 0.25rem;
}

@media (hover: hover) {
  .navigation.pagination
    .page-numbers:not(.prev, .next, .current, .dots):hover {
    background: #e2e2e2;
  }

  .navigation.pagination :is(.prev, .next):hover path {
    stroke: var(--clr-gray-600);
  }
}

.navigation.pagination .page-numbers.current {
  background: var(--clr-accent);
  color: #fff;
}

.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
  background: transparent;
}

/* ----- Buttons ----------------------------------------------------------- */

.t-button {
  display: inline-block;
  padding: 0.8125rem 1.875rem;
  border: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: var(--clr-accent);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  color: #fff;
  line-height: 1.2;
  transition: background-color 0.2s ease;
  text-align: center;
}

.t-button-outline {
  display: inline-block;
  padding: 0.8125rem 1.875rem;
  border: 0.0625rem solid currentColor;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  color: var(--clr-body);
  line-height: 1.2;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

@media (hover: hover) {
  .t-button:hover {
    background-color: var(--clr-body);
    color: #fff;
  }

  .t-button-outline:hover {
    background-color: var(--clr-body);
    color: #fff;
  }

  .t-button-outline--arrow:hover path {
    stroke: #fff;
  }
}

.t-button--arrow,
.t-button-outline--arrow,
.t-text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.t-button--arrow::after,
.t-text-button::after {
  content: "";
  width: 1.25rem;
  height: 1rem;
  background: url(../img/icons/arrow-right.svg) center/contain no-repeat;
  flex-shrink: 0;
}

.t-text-button {
  text-decoration: none;
  color: inherit;
}

.t-text-button::after {
  background: url(../img/icons/arrow-right-dark.svg) center/contain no-repeat;
}

@media (hover: hover) {
  .t-text-button:hover {
    color: var(--clr-accent);
  }

  .t-text-button:hover::after {
    background: url(../img/icons/arrow-right-accent-2.svg) center/contain
      no-repeat;
  }
}

/* ----- Content wrap ------------------------------------------------------ */

.content-wrap {
  padding-block: 5rem;
}

@media (max-width: 767.98px) {
  .content-wrap {
    padding-top: 1.5rem;
  }
}

/* Content grid */
.content-wrap__grid {
  gap: 3rem;
}

@media (min-width: 1200px) {
  .content-wrap__grid {
    grid-template-columns: 3fr 1fr;
  }
}

@media (min-width: 1400px) {
  .content-wrap__grid {
    column-gap: 6.25rem;
  }
}

/* Sidebar */
.t-sidebar-recommended {
  align-self: start;
}

.t-sidebar-recommended__card {
  padding: 1.625rem 1.875rem;
}

.t-sidebar-recommended__image {
  width: 2.25rem;
}

@media (max-width: 767.98px) {
  .t-sidebar-recommended__card {
    padding: 0.875rem 1.25rem;
  }
}

.t-sidebar-recommended__all svg {
  width: 1.25rem;
  height: auto;
}

@media (min-width: 1200px) {
  .t-sidebar-recommended {
    position: sticky;
    top: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .t-sidebar-recommended__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.t-sidebar-recommended__title {
  padding-bottom: 0.375rem;
}

/* ----- 404 --------------------------------------------------------------- */

.t-404__image {
  width: 47.5rem;
}

.t-404__content {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .t-404__content {
    font-size: 1.625rem;
  }
}

.t-404__title {
  font-size: 2.625rem;
}

/* ----- Logo / Titles ----------------------------------------------------- */

.t-logo {
  width: 16.9375rem;
}

.underline-title,
.wp-block-rank-math-toc-block :is(h2, h3),
.spu-content :is(h2, h3),
.t-article-content > h2 {
  position: relative;
  width: fit-content;
}

.underline-title::after,
.wp-block-rank-math-toc-block :is(h2, h3)::after,
.spu-content :is(h2, h3)::after,
.t-article-content > h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(4px);
  width: min(18rem, 58.6%);
  height: 4px;
  background-color: var(--clr-accent);
}

.underline-title--center::after {
  left: 50%;
  translate: -50% 0;
}

.underline-title--big {
  padding-bottom: 1.5rem;
  font-size: 3.25rem;
}

@media (min-width: 768px) {
  .underline-title--big {
    font-size: 5.5rem;
  }

  .underline-title--big::after {
    width: 18rem;
  }
}

/* Bootstrap-ish button */
.btn-primary {
  display: inline-flex;
  gap: 0.5rem;
  border-radius: 0;
  border: none;

  padding: 1rem 2rem;
  font-size: 1.125rem;

  background-color: var(--clr-accent);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.t-site-header {
  padding-block: 1.875rem;
}

@media (max-width: 767.98px) {
  .t-site-header {
    padding-block: 1rem;
  }
}

@media (min-width: 1200px) {
  .t-site-header .search-input__wrapper {
    width: 17.625rem;
  }
}

.custom-logo {
  width: 11.9444rem;
}

@media (min-width: 1400px) {
  .custom-logo {
    width: 17.9017rem;
  }
}

.fs-btn,
.cnt-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
  text-align: center;
}

.fs-btn input,
.cnt-btn input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.fs-btn input:focus-visible + span,
.cnt-btn input:focus-visible + span {
  outline: 1px solid #000;
  width: 100%;
}

.upper-header {
  gap: 2.5rem;
}

.search-submit {
  width: 5rem;
  height: 3rem;
  border: none;
  background-color: var(--clr-accent);
  display: grid;
  place-items: center;
}

.search-field {
  text-align: center;
  height: 3rem;
  padding-inline: 3rem 2rem;
  border: 1px solid var(--clr-gray-600);
}

.search-input__wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  background: url("../img/wyszukiwanie-lupka.svg") center/contain no-repeat;
  width: 1.5rem;
  height: 1.5rem;
}

/* Autosugestie wyszukiwania (Relevanssi) */
.t-search-suggest {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  margin: 0;
  padding: 0.25rem 0;
  background: var(--clr-white, #fff);
  border: 1px solid var(--clr-gray-600);
  border-top: 0;
  max-height: 18rem;
  overflow-y: auto;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);
}

.t-search-suggest__link {
  display: block;
  padding: 0.5rem 1.375rem;
  color: inherit;
  text-decoration: none;
  font-size: 0.9375rem;
}

.t-search-suggest__link:hover,
.t-search-suggest__link:focus,
.t-search-suggest [aria-selected="true"] .t-search-suggest__link {
  background: var(--clr-gray-200, #f5f5f5);
  outline: 0;
}

.t-search-suggest:focus {
  outline: 0;
}

input[type="search"] {
  padding-left: 3.625rem;
}

.header-menu a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 1400px) {
  .header-menu a {
    font-size: 1.25rem;
  }
}

.header-menu .menu-item > a {
  display: block;
  position: relative;
  overflow: hidden;
}

.header-menu .menu-item > a::after {
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: var(--clr-accent);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-101%);
  transition: transform 0.2s linear;
}

@media (hover: hover) {
  .header-menu .menu-item > a:hover::after {
    transform: translateX(0);
  }
}

@media (min-width: 1200px) {
  .header-menu .current-menu-item > a::after,
  .header-menu .current-menu-parent > a::after,
  .header-menu .current-menu-ancestor > a::after,
  .header-menu .current_page_parent > a::after {
    transform: translateX(0);
  }
}

.header-menu .current-menu-item > a,
.header-menu .current-menu-parent > a,
.header-menu .current-menu-ancestor > a,
.header-menu .current_page_parent > a {
  font-weight: 600;
}

.mobile-nav .menu-item a {
  padding: 1em 0.5em 1em;
}

.mobile-nav .menu-item a {
  border-bottom: 1px solid var(--clr-accent);
}

/* Font size controls */
.font-size__controls .fs-btn {
  transition: color 0.2s ease;
}

@media (hover: hover) {
  .font-size__controls .fs-btn:hover {
    color: var(--clr-accent);
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.t-footer {
  padding-block: 1.875rem;
}

@media (min-width: 768px) {
  .t-footer {
    padding-block: 2.5rem;
  }
}

.footer-menu a {
  color: var(--clr-body);
  text-decoration: none;
}

@media (hover: hover) {
  .footer-menu a:hover {
    color: var(--clr-accent);
  }
}

@media (min-width: 992px) {
  .footer-menu {
    gap: 1.875rem;
  }

  .footer-menu li {
    display: flex;
    align-items: center;
    gap: 1.875rem;
  }

  .footer-menu li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 1.25rem;
    background-color: var(--clr-gray-600);
  }
}

@media (max-width: 1199.98px) {
  .footer-menu {
    margin-top: 1.875rem;
  }
}

@media (max-width: 991.98px) {
  .footer-menu li {
    padding-block: 1.25rem;
  }

  .footer-menu li:first-child {
    padding-top: 0;
  }

  .footer-menu li:last-child {
    padding-bottom: 0;
  }

  .footer-menu li:not(:last-child) {
    border-bottom: 1px solid var(--clr-gray-600);
  }
}

/* ==========================================================================
   MISC
   ========================================================================== */

@media (min-width: 1200px) {
  .h-xl-100 {
    height: 100%;
  }
}

.footer-ai {
font-size: 12px;
    margin-top: 20px;
}