/**
 * Theme Name: sportnieuws
 * Version: 1.0
 */

        :root {
            --color-bg: #f8fafc;
            --color-bg-alt: #ffffff;
            --color-text: #0f172a;
            --color-text-muted: #64748b;
            --color-primary: #2563eb;
            --color-primary-dark: #1d4ed8;
            --color-accent: #059669;
            --color-accent-light: #d1fae5;
            --color-warning: #f59e0b;
            --color-warning-light: #fef3c7;
            --color-border: #e2e8f0;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
            --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 1.5rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --radius-sm: 0.375rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --transition: 200ms ease;
            --max-width: 70rem;
            --content-width: 48rem;
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --color-bg: #0f172a;
                --color-bg-alt: #1e293b;
                --color-text: #f1f5f9;
                --color-text-muted: #94a3b8;
                --color-border: #334155;
                --color-accent-light: #064e3b;
                --color-warning-light: #451a03;
            }
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-sans);
            font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
            line-height: 1.7;
            color: var(--color-text);
            background: var(--color-bg);
        }

        a {
            color: var(--color-primary);
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover { color: var(--color-primary-dark); text-decoration: underline; }

        a:focus-visible {
            outline: 3px solid var(--color-primary);
            outline-offset: 2px;
            border-radius: var(--radius-sm);
        }

        .skip-link {
            position: absolute;
            top: -100%;
            left: var(--spacing-sm);
            background: var(--color-primary);
            color: white;
            padding: var(--spacing-xs) var(--spacing-sm);
            border-radius: var(--radius-sm);
            z-index: 1000;
        }

        .skip-link:focus { top: var(--spacing-sm); }

         header {
            background: linear-gradient(135deg, var(--color-primary) 0%, #7c3aed 100%);
            color: white;
            padding: var(--spacing-xl) var(--spacing-md);
        }

        header .wrapper {
            max-width: var(--content-width);
            margin: 0 auto;
        }

       h1 {
            font-size: clamp(1.75rem, 1.5rem + 1.5vw, 2.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: var(--spacing-sm);
            text-align: center;
          max-width: 1000px;
          margin: 0 auto;
        }

        main > header p {
            font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
            opacity: 0.9;
            max-width: 38rem;
        }
      .container-page{
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 15px;
      }
        .meta {
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-md);
            font-size: 0.875rem;
            opacity: 0.85;
        }

        .content {
            max-width: var(--max-width);
            margin: 0 auto;
            padding-top: 2.5rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--spacing-xl);
        }
      .post-thumbnail {
        margin: 2.5rem 0;
      }
        @media (min-width: 64rem) {
            .content { grid-template-columns: 1fr 16rem; }
        }

        article { max-width: var(--content-width); }

        nav[aria-label="Inhaltsverzeichnis"] {
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            margin-bottom: var(--spacing-lg);
        }

        nav[aria-label="Inhaltsverzeichnis"] h2 {
            font-size: 1rem;
            margin-bottom: var(--spacing-sm);
            border: none;
            padding: 0;
        }

        nav[aria-label="Inhaltsverzeichnis"] ol {
            list-style: none;
            counter-reset: toc;
        }

        nav[aria-label="Inhaltsverzeichnis"] li { counter-increment: toc; }

        nav[aria-label="Inhaltsverzeichnis"] a {
            display: block;
            padding: var(--spacing-xs);
            border-radius: var(--radius-sm);
            transition: background var(--transition), transform var(--transition);
        }

        nav[aria-label="Inhaltsverzeichnis"] a::before {
            content: counter(toc) ". ";
            color: var(--color-primary);
            font-weight: 600;
        }

        nav[aria-label="Inhaltsverzeichnis"] a:hover {
            background: var(--color-accent-light);
            text-decoration: none;
            transform: translateX(4px);
        }

        section { margin-bottom: var(--spacing-xl); }

        h2 {
            font-size: clamp(1.375rem, 1.2rem + 0.75vw, 1.75rem);
            font-weight: 700;
            margin-bottom: var(--spacing-md);
            padding-bottom: var(--spacing-xs);
            border-bottom: 3px solid var(--color-primary);
        }

        h3 {
            font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
            font-weight: 600;
            margin: var(--spacing-lg) 0 var(--spacing-sm);
        }

        p { margin-bottom: var(--spacing-md); }
        p:last-child { margin-bottom: 0; }

        strong { font-weight: 600; }

        .highlight {
            background: linear-gradient(135deg, var(--color-accent-light) 0%, transparent 100%);
            border-left: 4px solid var(--color-accent);
            padding: var(--spacing-md);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin: var(--spacing-lg) 0;
        }

        .highlight p { margin: 0; }

        .card {
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            margin: var(--spacing-lg) 0;
            box-shadow: var(--shadow-md);
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .card h3 { margin-top: 0; color: var(--color-primary); }

        dl { display: grid; gap: var(--spacing-sm); margin: var(--spacing-sm) 0; }

        dt { font-weight: 600; color: var(--color-primary); }

        dd {
            margin-left: var(--spacing-md);
            padding-left: var(--spacing-sm);
            border-left: 2px solid var(--color-border);
        }
        .visually-hidden {
          position: absolute;
          width: 1px;
          height: 1px;
          margin: -1px;
          border: 0;
          padding: 0;
          white-space: nowrap;
          clip-path: inset(100%);
          clip: rect(0 0 0 0);
          overflow: hidden;
        }
                .warning {
            background: var(--color-warning-light);
            border: 1px solid var(--color-warning);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            margin: var(--spacing-lg) 0;
        }

        .warning p { margin: 0; }

        details {
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            margin-bottom: var(--spacing-sm);
            overflow: hidden;
            transition: box-shadow var(--transition);
        }

        details:hover { box-shadow: var(--shadow-md); }

        summary {
            padding: var(--spacing-md);
            cursor: pointer;
            font-weight: 600;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background var(--transition);
        }

        summary::-webkit-details-marker { display: none; }

        summary::after {
            content: "+";
            font-size: 1.5rem;
            color: var(--color-primary);
            transition: transform var(--transition);
        }

        details[open] summary::after { transform: rotate(45deg); }

        summary:hover { background: var(--color-accent-light); }

        .answer { padding: 0 var(--spacing-md) var(--spacing-md); color: var(--color-text-muted); }

        aside {
            position: sticky;
            top: 3.5rem;
            height: fit-content;
        }

        aside section {
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            margin-bottom: var(--spacing-md);
        }

        aside h3 {
            font-size: 0.9375rem;
            margin: 0 0 var(--spacing-sm);
            color: var(--color-primary);
        }

        aside p, aside li { font-size: 0.875rem; color: var(--color-text-muted); }

        aside ul { list-style: none; }

        aside li {
            padding: var(--spacing-xs) 0;
            border-bottom: 1px solid var(--color-border);
        }

        aside li:last-child { border-bottom: none; }

        footer {
            background: var(--color-bg-alt);
            border-top: 1px solid var(--color-border);
            padding: var(--spacing-xl) var(--spacing-md);
            margin-top: var(--spacing-xl);
        }

        footer .wrapper {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
            gap: var(--spacing-lg);
        }

        footer h3 { font-size: 0.9375rem; margin-bottom: var(--spacing-sm); }

        footer p, footer li { font-size: 0.875rem; color: var(--color-text-muted); }

        footer ul { list-style: none; }

        footer li { margin-bottom: var(--spacing-xs); }

        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: var(--spacing-lg);
            border-top: 1px solid var(--color-border);
            margin-top: var(--spacing-sm);
        }

        @media (max-width: 48rem) {
            aside {
                position: static;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
                gap: var(--spacing-sm);
            }
            aside section { margin-bottom: 0; }
        }

        @media print {
            main > header { background: none; color: black; border-bottom: 2px solid black; }
            nav[aria-label="Inhaltsverzeichnis"], aside, .skip-link { display: none; }
            .card, details { box-shadow: none; border: 1px solid #ccc; }
        }
    
.hero-figure{
  margin-top: 2.5rem;
}
.entry-content{
  margin-top: 2.5rem;
}
/*  */

img {
  width: 100%;
  object-fit: cover;
  max-height: 600px;
  height: auto;
}

.wp-block-image img {
  margin-bottom: 2rem;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 3rem;
  list-style: none;
  font-size: 1.1rem;
}

.container-casa {
  margin-top: 4rem;
}

.container-casa p {
  max-width: 800px;
  text-align: center;
  margin: 2rem auto;
}

/* --- 1. menu --- */
.header-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
      background: linear-gradient(135deg, var(--color-primary) 0%, #7c3aed 100%);
    color: white;
  min-height: 3.5rem;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.burger-logo {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  text-decoration: none;
}

.main-logo-img {
  max-height: 52px;
  width: 52px;
  flex-shrink: 0;
  border-radius: 10%;
}

.logo-text {
  color:#fff;
  font-size: 1.3rem;
  font-weight: 700;

  white-space: nowrap;
}

.burger-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}

.burger-btn span,
.burger-btn span::before,
.burger-btn span::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.burger-btn span::before {
  top: -8px;
}
.burger-btn span::after {
  top: 8px;
}

.js-burger.active span {
  background-color: transparent !important;
}
.js-burger.active span::before {
  transform: translateY(8px) rotate(45deg);
}
.js-burger.active span::after {
  transform: translateY(-8px) rotate(-45deg);
}

.main-navigation {
  position: fixed;

  top: -100%;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: 100vh;
  background: var(--color-warning-light);
  z-index: 9999;

  transition:
    top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.5s;
  padding: 80px 20px 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  display: block;
  overflow-y: auto;
}

.main-navigation.active {
  top: 0;
  visibility: visible;
}

.main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.main-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 0.2s;
}

.main-menu a:hover {
  color: #f1e253;
}

body.has-overlay {
  overflow: hidden;
}

.btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 1;
  color: #fff;
}

.menu-item-has-children > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.menu-item-has-children > a::after {
  content: "▼";
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.menu-item-has-children.is-open > a::after {
  transform: rotate(180deg);
  color: #3b9eff;
}

.sub-menu {
  list-style: none !important;
  padding-left: 20px !important;
  margin: 0 !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100vh;
}

.sub-menu li {
  padding: 10px 0;
}

.sub-menu a {
  font-size: 1rem !important;

  font-weight: 400 !important;
}

.menu-item-has-children > a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.menu-item-has-children:hover > .sub-menu {
  max-height: 1000px !important;
  visibility: visible;
  opacity: 1;
}

.main-menu li.current-menu-item > a,
.main-menu li.current_page_item > a,
.main-menu li.current-post-ancestor > a,
.main-menu li.current-menu-ancestor > a,
.main-menu li.current-page-ancestor > a {
  color: var(--color-warning);
  font-weight: 700 !important;
}

.main-menu li.menu-item-has-children.is-open > a {
  color: var(--color-warning);
}

.main-menu li.active > a {
  color: var(--color-warning);
  font-weight: 700 !important;
}

.main-navigation.active .main-menu .current-menu-item > a {
  color: var(--color-warning);
}

/* end menu */

.sitemap-content {
  margin: 30px 0;
}

.sitemap-section {
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 8px;
}

.sitemap-section h2 {
  color: inherit;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.sitemap-section h3 {
  color: #555;
  margin: 15px 0 10px 0;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 3rem ;
  gap: 0.8rem;
}

.breadcrumbs a{
color: var(--color-warning);
}
.breadcrumbs-content {
  display: contents;
}
@media (max-width: 1024px) {
  .sitemap-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .sitemap-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .header-top {
    padding: 0 1rem;
  }
}

.sitemap-list li {
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.sitemap-list li:before {
  content: "›";
  position: absolute;
  left: 0;
  color: #007cba;
}

.sitemap-list a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.sitemap-list a:hover {
  color: #007cba;
}

.category-group {
  margin-bottom: 20px;
}

.tags-cloud {
  line-height: 2;
}

.tag {
  display: inline-block;
  background: #e9e9e9;
  padding: 5px 10px;
  margin: 3px;
  border-radius: 3px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.3s;
}

.tag:hover {
  background: #007cba;
  color: white;
}

.toc {
  background: rgba(230, 57, 70, 0.1) !important;
  padding: var(--spacing-md) !important;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-sm);
  border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .sitemap-section {
    padding: 15px;
  }

  .tag {
    font-size: 12px;
    padding: 3px 8px;
  }
}

@media (max-width: 1100px) {
  .site-titlecontainer-casa {
    margin-top: 3rem;
  }
  .container-casa {
  margin-top: 3rem;
}
.breadcrumbs {
    margin: 2rem 0 0;
    
}
  .wide-image-container {
    margin-left: calc(-2 * var(--space-xl));
    margin-right: calc(-2 * var(--space-xl));
    border-radius: var(--img-radius);
  }

  .site-branding nav {
    background: none;
    border-radius: var(--radius);

    margin-bottom: calc(var(--gap) * 1.5);
    box-shadow: none;
    border: none;
  }
}

header p {
  font-size: var(--font-md);
}
.toc-wrap {
  padding: 1rem;
}

.back-to-top {
  bottom: 1rem;
  right: 1rem;
  width: 45px;
  height: 45px;
}

/* articulos */
.articulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
  padding-top: 30px;

  max-width: var(--max-width);
  margin: 0 auto;
}

.articulos-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 0;
}

.articulos-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.articulos-card__image-link img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.articulos-card:hover .articulos-card__image-link img {
  transform: scale(1.08);
}

/* Контент */

.articulos-card__content {
  padding: 0 17px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.articulos-card__title {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.6rem;
}
.articulos-card__title a {
  text-decoration: none;
}

.articulos-card__excerpt {
  margin-top: auto;

  margin-bottom: 0;
  color: #6e6e73;
  font-size: 0.95rem;
  line-height: 1.5;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.articulos-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s;
}

.articulos-card__link svg {
  transition: transform 0.3s;
}

.articulos-card__link:hover {
  color: #0073aa;
  gap: 12px;
}

.articulos-card__image-link {
  display: block;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  height: 170px;
}

.articulos-card__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.articulos-card:hover .articulos-card__image-link img {
  transform: scale(1.08);
}

/* Заглушка, если у поста нет картинки */
.articulos-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.load-more-wrapper {
  text-align: center;
  margin: 40px 0;
}

.btn-load-more {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.btn-load-more:hover {
  background-color: #005177;
}

@media (max-width: 559px) {
  .articulos-grid {
    gap: 17px;
  }
  .articulos-card__image-link {
    height: 17rem;
  }
}

@media (max-width: 768px) {
  .sitemap-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 5px;
    list-style: none;
    padding: 0;
  }
}

#site-navigation a,
.menu-item a {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

footer p{
  color: #ccc;
}
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;

    margin-top: 2.5rem;
}
.sitemap-grid{
  padding: 2rem 0;
  margin: 3rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
   
    text-transform: uppercase;
    margin:0 0 15px;
    color: var(--color-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-logo {
 
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 13px;
    color: #888;
    text-align: center;
}

.safety-icons {
    display: flex;
    gap: 15px;
   
    font-weight: bold;
}

/* Адаптивность */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo-container img {
   
    height: auto;
    display: block;
    margin-bottom: 20px;
    
    max-width: 57px;
    border-radius: 10px;
    
}
.footer-grid{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-logo-text {

    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #0073aa; 
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.footer-disclaimer p{
  text-align: center;
  margin: 1.5rem 0;
}

/* Контейнер для скролла */
.table-container {
    width: 100%;
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}
section,
h2[id], 
h3[id], 
[data-content] {
    scroll-margin-top: 80px;
}

.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 44px;
	height: 44px;
	background: var(--color-warning-light);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition), transform var(--transition);
	z-index: 100;
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	transform: translateY(-3px);
	background: var(--c-primary);
}

.back-to-top svg {
	width: 20px;
	height: 20px;
}

