/* =========================================================
   AM:PLIFIED — Editorial Universe Template
   template.css — korrigierte Gesamtfassung
   ========================================================= */

:root {
    --bg: #020308;
    --bg2: #080910;
    --panel: rgba(255,255,255,.035);
    --panel2: rgba(255,255,255,.022);
    --line: rgba(255,255,255,.13);
    --line-soft: rgba(255,255,255,.075);
    --line-violet: rgba(183,112,255,.38);
    --text: #f4f0ff;
    --muted: #aaa7b7;
    --soft: #706c7e;
    --violet: #bd72ff;
    --cyan: #68d9ff;
    --max: 1540px;
    --article-max: 1280px;
    --pad: clamp(18px, 4vw, 56px);
    --header-h: 76px;
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    background:
        radial-gradient(circle at 72% 6%, rgba(150,88,255,.16), transparent 32%),
        var(--bg);
    color: var(--text);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: .02em;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video,
iframe,
object,
embed {
    max-width: 100%;
}

img {
    height: auto;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.amp-container {
    width: min(var(--max), calc(100% - var(--pad) * 2));
    margin-inline: auto;
}

/* =========================================================
   HEADER / NORMAL JOOMLA MENU
   ========================================================= */

.amp-header {
    min-height: var(--header-h);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
    padding: 0 clamp(18px, 3vw, 42px);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2,3,8,.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.amp-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.amp-logo img {
    display: block;
    width: clamp(160px, 15vw, 260px);
    max-height: 42px;
    object-fit: contain;
}

.amp-nav {
    justify-self: center;
    width: auto;
    max-width: min(900px, 58vw);
}

.amp-nav-list,
.amp-nav ul,
.amp-header .mod-menu,
.amp-header ul.menu,
.amp-header ul.nav,
.amp-header .navbar-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.4vw, 42px);
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.amp-nav-list > li,
.amp-nav ul > li,
.amp-header .mod-menu > li,
.amp-header ul.menu > li,
.amp-header ul.nav > li,
.amp-header .navbar-nav > li {
    display: block;
    margin: 0;
    padding: 0;
}

.amp-nav a,
.amp-header .mod-menu a,
.amp-header ul.menu a,
.amp-header ul.nav a,
.amp-header .navbar-nav a {
    display: block;
    font-size: .72rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #fff;
    opacity: .92;
    white-space: nowrap;
    padding: 29px 0 24px;
    border-bottom: 2px solid transparent;
}

.amp-nav .active > a,
.amp-nav li.active a,
.amp-header .mod-menu .active > a,
.amp-header ul.menu .active > a,
.amp-header ul.nav .active > a,
.amp-header .current > a,
.amp-header .active > a,
.amp-nav a:hover,
.amp-header .mod-menu a:hover,
.amp-header ul.menu a:hover,
.amp-header ul.nav a:hover {
    color: var(--violet);
    border-color: var(--violet);
}

.amp-social {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    opacity: .9;
    flex: 0 0 auto;
}

.amp-social a {
    font-size: 1.02rem;
    line-height: 1;
}

.amp-menu-toggle {
    display: none;
    justify-self: end;
    background: transparent;
    border: 0;
    width: 42px;
    height: 42px;
    padding: 8px;
    cursor: pointer;
}

.amp-menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 7px 0;
}

/* =========================================================
   GLOBAL MAIN
   ========================================================= */

.amp-main {
    min-height: 65vh;
}

.amp-kicker,
.amp-meta {
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--violet);
    font-size: .76rem;
}

/* =========================================================
   HOMEPAGE HERO
   ========================================================= */

.amp-hero {
    min-height: clamp(520px, 44vw, 720px);
    background-color: #05060d;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.amp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(2,3,8,.50) 74%, #020308 100%);
    pointer-events: none;
}

.amp-hero-mark {
    position: absolute;
    right: 6vw;
    top: 12%;
    width: min(34vw, 520px);
    aspect-ratio: 1;
    opacity: .28;
    border: 1px solid var(--line-violet);
    transform: skew(-22deg);
    filter: drop-shadow(0 0 35px rgba(189,114,255,.35));
}

.amp-hero-inner {
    position: relative;
    z-index: 2;
    width: min(680px, calc(100% - var(--pad) * 2));
    margin-left: max(var(--pad), calc((100vw - var(--max)) / 2));
    padding-top: clamp(76px, 9vw, 128px);
}

.amp-hero h1 {
    font-weight: 300;
    font-size: clamp(3rem, 5.6vw, 6.8rem);
    line-height: .96;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin: 0 0 28px;
}

.amp-hero h1 span {
    color: var(--violet);
    text-shadow: 0 0 34px rgba(189,114,255,.34);
}

.amp-lead {
    max-width: 540px;
    color: #c8c4d1;
    margin: 0 0 34px;
}

.amp-button {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--line-violet);
    padding: 11px 28px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #e7ccff;
    background: rgba(189,114,255,.05);
}

.amp-button:hover {
    background: rgba(189,114,255,.14);
}

/* =========================================================
   HOMEPAGE SECTIONS / CARDS
   ========================================================= */

.amp-section {
    padding: clamp(34px, 5vw, 74px) 0;
    border-top: 1px solid rgba(255,255,255,.06);
}

.amp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.amp-section-head h2 {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .24em;
    font-weight: 500;
    margin: 0 0 12px;
}

.amp-section-head a {
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--violet);
    font-size: .78rem;
}

.amp-card-grid {
    display: grid;
    gap: 16px;
}

.amp-card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.amp-card-grid-responsive {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.amp-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
    border: 1px solid var(--line);
    min-width: 0;
    transition: transform .2s ease, border-color .2s ease;
}

.amp-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-violet);
}

.amp-card > a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.amp-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: grayscale(.86) contrast(1.08) brightness(.75);
}

.amp-card div {
    position: relative;
    padding: 22px 22px 46px;
}

.amp-card h3 {
    font-size: clamp(1.05rem, 1.25vw, 1.32rem);
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 24px;
    color: #fff;
}

.amp-date,
.amp-card p:not(.amp-meta) {
    color: var(--muted);
    font-size: .86rem;
}

.amp-card-small p:not(.amp-meta) {
    min-height: 3.8em;
}

.amp-card-small p:empty {
    display: none;
}

.amp-arrow {
    position: absolute;
    right: 24px;
    bottom: 18px;
    color: var(--violet);
    font-size: 1.25rem;
}

/* =========================================================
   HOMEPAGE CATEGORIES
   ========================================================= */

.amp-category-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    border: 1px solid var(--line);
    background: var(--panel2);
}

.amp-cat {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 18px;
    align-items: center;
    padding: 24px 26px;
    border-right: 1px solid var(--line);
}

.amp-cat:last-child {
    border-right: 0;
}

.amp-cat span {
    grid-row: span 2;
    font-size: 2.2rem;
    color: #fff;
}

.amp-cat strong {
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 400;
}

.amp-cat em {
    font-style: normal;
    color: var(--muted);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* =========================================================
   CREATIVE UNIVERSE
   ========================================================= */

.amp-universe {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 34px;
}

.amp-universe-intro p:last-child {
    color: var(--muted);
    margin-top: 0;
}

.amp-universe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.amp-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 190px;
    border: 1px solid var(--line);
    padding: 28px;
    background: rgba(255,255,255,.02);
}

.amp-brand.is-current {
    border-color: var(--line-violet);
}

.amp-brand-logo,
.amp-brand img {
    width: min(240px, 82%);
    height: auto;
    object-fit: contain;
    margin: 10px auto 18px !important;
}

.amp-brand.is-current .amp-brand-logo {
    width: min(260px, 88%);
}

.amp-mini-logo {
    font-size: 3.6rem;
    line-height: 1;
    font-style: italic;
    color: #fff;
}

.amp-brand strong {
    font-size: 1.35rem;
    letter-spacing: .24em;
    font-weight: 300;
}

.amp-brand em {
    color: var(--cyan);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .76rem;
}

.amp-brand p {
    color: var(--muted);
    font-size: .88rem;
}

/* =========================================================
   HOME PAGINATION
   ========================================================= */

.amp-home-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
}

.amp-home-pagination a,
.amp-home-pagination span {
    border: 1px solid var(--line);
    padding: 9px 14px;
    background: rgba(255,255,255,.025);
}

.amp-home-pagination a {
    color: #e7ccff;
}

.amp-home-pagination a:hover {
    border-color: var(--line-violet);
    background: rgba(189,114,255,.1);
}

/* =========================================================
   ARTICLE PAGES — COMPONENT WRAPPER
   ========================================================= */

.amp-component {
    padding: 0 0 78px;
}

.amp-article,
.com-content-article {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* =========================================================
   ARTICLE HERO — FIXED / CONTAINED / FULL OVERLAY
   ========================================================= */

.amp-article-hero {
    position: relative;
    isolation: isolate;
    width: min(var(--article-max), calc(100% - var(--pad) * 2));
    margin: clamp(34px, 4vw, 58px) auto 0;
    min-height: clamp(260px, 32vh, 380px);
    max-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-color: #05060d;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border: 1px solid var(--line);
    border-bottom-color: rgba(255,255,255,.22);
}

.amp-article-hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -2px;
    background:
        linear-gradient(
            90deg,
            rgba(2,3,8,.985) 0%,
            rgba(2,3,8,.92) 44%,
            rgba(2,3,8,.78) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2,3,8,.52) 0%,
            rgba(2,3,8,.82) 62%,
            rgba(2,3,8,.98) 100%
        ) !important;
    pointer-events: none;
}

.amp-article-hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 65%;
    background:
        linear-gradient(
            0deg,
            #020308 0%,
            rgba(2,3,8,.98) 18%,
            rgba(2,3,8,.72) 48%,
            rgba(2,3,8,0) 100%
        ) !important;
    pointer-events: none;
}

.amp-article-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 !important;
    padding:
        clamp(54px, 7vw, 100px)
        clamp(24px, 4vw, 64px)
        clamp(32px, 4vw, 52px) !important;
}

.amp-article-hero .amp-kicker,
.amp-article-hero .category-name {
    display: block;
    margin: 0 0 24px;
    color: var(--violet);
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: .78rem;
}

.amp-article-hero h1 {
    max-width: 1040px;
    margin: 0;
    font-weight: 300;
    letter-spacing: .14em;
    text-transform: uppercase;
    line-height: 1.16;
    font-size: clamp(2rem, 4.2vw, 4.8rem);
    overflow-wrap: anywhere;
}

/* =========================================================
   ARTICLE TWO-COLUMN LAYOUT
   ========================================================= */

.amp-article-layout {
    width: min(var(--article-max), calc(100% - var(--pad) * 2));
    max-width: var(--article-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 74px);
    align-items: start;
    padding: clamp(42px, 6vw, 80px) 0;
}

.amp-article-side {
    position: sticky;
    top: calc(var(--header-h) + 28px);
    border-right: 1px solid var(--line);
    padding-right: clamp(22px, 3vw, 46px);
}

.amp-article-side-inner {
    width: 100%;
}

.amp-article-image {
    width: 100%;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    margin-bottom: 28px;
}

.amp-review-fields {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.amp-field {
    border-bottom: 1px solid rgba(255,255,255,.09);
    padding-bottom: 12px;
}

.amp-field-label {
    display: block;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .72rem;
}

.amp-field-value {
    color: #fff;
}

.amp-article-body {
    min-width: 0;
    font-size: 1.04rem;
    color: #d9d5df;
}

.amp-article-body,
.amp-article-body * {
    max-width: 100%;
}

.amp-article-body h1,
.amp-article-body h2,
.amp-article-body h3,
.amp-article-body h4 {
    font-weight: 400;
    color: #fff;
    letter-spacing: .08em;
    line-height: 1.25;
}

.amp-article-body a {
    color: var(--violet);
}

.amp-article-body p {
    margin: 0 0 1.25rem;
}

.amp-article-body img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 2px;
}

.amp-article-body iframe,
.amp-article-body video,
.amp-article-body object,
.amp-article-body embed {
    max-width: 100% !important;
}

.amp-article-body iframe[src*="youtube"],
.amp-article-body iframe[src*="youtu.be"] {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    height: auto !important;
}

/* Joomla custom fields must stay in the left metadata column only */
.amp-article-body .fields-container,
.amp-article-body .field-entry,
.amp-article-body .jcfields,
.amp-article-body .com-fields {
    display: none !important;
}

/* Review rating / ring containment */
.amp-article-body svg,
.amp-article-body canvas {
    max-width: min(260px, 70vw) !important;
    max-height: min(260px, 70vw) !important;
    width: min(260px, 70vw) !important;
    height: min(260px, 70vw) !important;
    display: block !important;
    margin: 2.25rem auto !important;
}

.amp-article-body [class*="rating"],
.amp-article-body [class*="score"],
.amp-article-body [class*="wertung"],
.amp-article-body [id*="rating"],
.amp-article-body [id*="score"],
.amp-article-body [id*="wertung"] {
    max-width: 260px !important;
    max-height: 260px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.amp-article-body [style*="border-radius: 50%"],
.amp-article-body [style*="border-radius:50%"] {
    max-width: 260px !important;
    max-height: 260px !important;
}

.amp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.amp-tags span,
.amp-tags a {
    border: 1px solid var(--line-violet);
    color: #e5c9ff;
    padding: 5px 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .68rem;
}

/* =========================================================
   JOOMLA CATEGORY/BLOG FALLBACKS
   ========================================================= */

.blog,
.com-content-category-blog {
    color: var(--text);
}

.blog-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.blog-item {
    border: 1px solid var(--line);
    padding: 20px;
    background: rgba(255,255,255,.025);
}

.page-header h1,
.page-header h2 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.pager,
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.pagination a,
.pagination span,
.pager a {
    border: 1px solid var(--line);
    padding: 8px 12px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.amp-footer {
    position: relative;
    z-index: 1;
    padding-bottom: 72px;
    border-top: 1px solid var(--line);
    background: #030409;
}

.amp-footer-dna {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 26px 0;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .72rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.amp-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    color: var(--muted);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.amp-footer-bottom nav {
    display: flex;
    gap: 26px;
}

.amp-footer-bottom nav a[href="#top"] {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

/* Cookie consent overlay safety */
body .cc-window,
body .cc-revoke,
body [class*="cookie"],
body [id*="cookie"] {
    max-width: 100vw;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1260px) {
    .amp-header {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .amp-nav {
        max-width: min(720px, 54vw);
    }

    .amp-nav-list,
    .amp-nav ul,
    .amp-header .mod-menu,
    .amp-header ul.menu,
    .amp-header ul.nav,
    .amp-header .navbar-nav {
        gap: clamp(14px, 1.7vw, 26px) !important;
    }

    .amp-nav a,
    .amp-header .mod-menu a,
    .amp-header ul.menu a,
    .amp-header ul.nav a,
    .amp-header .navbar-nav a {
        font-size: .68rem;
        letter-spacing: .16em;
    }
}

@media (max-width: 1100px) {
    .amp-card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .amp-universe {
        grid-template-columns: 1fr;
    }

    .amp-universe-grid {
        grid-template-columns: 1fr;
    }

    .amp-footer-dna {
        grid-template-columns: repeat(2, 1fr);
    }

    .amp-header {
        grid-template-columns: auto auto;
    }

    .amp-nav {
        grid-column: 1 / -1;
        justify-self: stretch;
        max-width: none;
        width: 100%;
    }

    .amp-social {
        display: none;
    }

    .amp-article-layout {
        grid-template-columns: 1fr;
    }

    .amp-article-side {
        position: static;
        border-right: 0;
        padding-right: 0;
    }

    .amp-article-side-inner {
        display: grid;
        grid-template-columns: minmax(180px, 320px) 1fr;
        gap: 28px;
        align-items: start;
    }
}

@media (max-width: 860px) {
    :root {
        --header-h: 70px;
    }

    .amp-header {
        grid-template-columns: auto auto;
        height: auto;
        min-height: var(--header-h);
    }

    .amp-menu-toggle {
        display: block;
    }

    .amp-nav {
        grid-column: 1 / -1;
        display: none;
        width: 100%;
        justify-self: stretch;
    }

    .amp-nav.is-open {
        display: block;
    }

    .amp-nav-list,
    .amp-nav ul,
    .amp-header .mod-menu,
    .amp-header ul.menu,
    .amp-header ul.nav,
    .amp-header .navbar-nav {
        display: none !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0 !important;
        padding: 10px 0 18px;
    }

    .amp-nav.is-open .amp-nav-list,
    .amp-nav.is-open ul,
    .amp-nav.is-open .mod-menu,
    .amp-nav.is-open ul.menu,
    .amp-nav.is-open ul.nav,
    .amp-nav.is-open .navbar-nav {
        display: flex !important;
    }

    .amp-nav a,
    .amp-header .mod-menu a,
    .amp-header ul.menu a,
    .amp-header ul.nav a,
    .amp-header .navbar-nav a {
        padding: 14px 0;
    }

    .amp-hero-inner {
        padding-top: 72px;
    }

    .amp-hero h1 {
        letter-spacing: .13em;
    }

    .amp-card-grid-4 {
        grid-template-columns: 1fr;
    }

    .amp-category-strip {
        grid-template-columns: 1fr;
    }

    .amp-cat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .amp-home-pagination {
        flex-wrap: wrap;
    }

    .amp-article-hero {
        width: calc(100% - var(--pad) * 2);
        margin-top: 24px;
        min-height: 260px;
    }

    .amp-article-hero-inner {
        padding: 42px 24px 32px !important;
    }

    .amp-article-side-inner {
        grid-template-columns: 1fr;
    }

    .amp-footer-bottom {
        flex-direction: column;
    }

    .amp-footer-bottom nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 520px) {
    :root {
        --pad: 16px;
    }

    .amp-logo img {
        width: 185px;
    }

    .amp-hero h1 {
        font-size: 2.55rem;
    }

    .amp-article-hero h1 {
        font-size: 1.8rem;
        letter-spacing: .08em;
    }

    .amp-card div {
        padding: 18px 18px 44px;
    }

    .amp-footer-dna {
        grid-template-columns: 1fr;
    }
}
