:root {
    /* Palette sampled by pixel from protiproud.info reference screenshots
       (homepage / rubrika / article, 2026-08-27) — not guessed. */
    --color-red: #c53030;          /* logo, POLITIKA/TV-style nav buttons */
    --color-red-dark: #9c2626;      /* hover/active shade of --color-red */
    --color-red-rail: #cf2027;     /* decorative rotated side-rail wordmark */
    --color-byline: #a62929;       /* author names, category label */
    --color-ink-strong: #1a1a1a;   /* logo dark letters, dark nav button */
    --color-btn-gray: #d9d9d9;     /* neutral nav button */
    --color-btn-blue: #2b4fb8;     /* accent nav button */
    --color-heading: #2e2e2e;      /* headlines, card titles, footer icon bg */
    --color-body: #404040;         /* paragraph body copy */
    --color-body-strong: #1d1d1d;  /* lead/intro paragraph */
    --color-meta: #6b6b6b;         /* dates */
    --color-footer-link: #585858;  /* footer links, tagline */
    --color-band-bg: #fafafa;      /* light section band (rubrika header) */
    --color-rail-bg: #000000;      /* outer decorative rail background */
    --color-bg: #ffffff;
    --color-card-bg: rgba(255, 255, 255, 0.92);
    --font-body: 'Inter', Arial, Helvetica, sans-serif;
    --font-serif: 'Inter', Arial, Helvetica, sans-serif;
}

html, body {
    height: 100%; /* Full height for the html and body */
    margin: 0; /* Remove default margin */
    font-family: var(--font-body);
}

body{
    min-height: 100vh; /* Ensure the body takes at least the full height of the viewport */
    background-color: var(--color-rail-bg);
}

/* DECORATIVE SIDE RAILS — mirrors protiproud.info's rotated brand-name
   margins, which flank the white content column at essentially any
   desktop width (verified visible at 1385px in the reference
   screenshots) — only hidden once there's no room to spare. */
.side-rail {
    display: none;
}

@media (min-width: 1300px) {
    .side-rail {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        position: fixed;
        top: 0;
        bottom: 0;
        width: 180px;
        background-color: var(--color-rail-bg);
        overflow: hidden;
        z-index: 0;
        box-sizing: border-box;
    }

    .side-rail-left { left: 0; }
    .side-rail-right { right: 0; }

    /* one CZECH (vertical) + TODAY (horizontal) unit, same font/weight
       as the header logo; the tile repeats down the rail, no badge */
    .rail-unit {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .rail-vert {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-family: var(--font-body);
        font-weight: 900;
        font-size: 40px;
        letter-spacing: 1px;
        line-height: 1;
    }

    .rail-flip {
        display: inline-block;
        transform: scaleX(-1);
    }

    .rail-horiz {
        writing-mode: horizontal-tb;
        font-family: var(--font-body);
        font-weight: 900;
        font-size: 20px;
        letter-spacing: 2px;
        line-height: 1;
        margin-top: 8px;
    }

    /* two alternating color variants, matching the reference's
       alternating red/white rhythm down the rail */
    .rail-variant-a .rail-vert { color: #ffffff; }
    .rail-variant-a .rail-flip { color: var(--color-red-rail); }
    .rail-variant-a .rail-horiz { color: var(--color-red-rail); }

    .rail-variant-b .rail-vert { color: var(--color-red-rail); }
    .rail-variant-b .rail-flip { color: #ffffff; }
    .rail-variant-b .rail-horiz { color: #ffffff; }
}

#container{
    /* Deliberately NO background here: #container spans the full
       viewport width (it's the flex parent for header/main/footer),
       but only the white content column should paint white — the
       margins on either side must stay the page's black so the fixed
       .side-rail elements (and body's own black) show through instead
       of being painted over. */
    display: flex;
    flex-direction: column; /* Stack children vertically */
    min-height: 100vh; /* Full height of the viewport */
}

#main-content {
    box-sizing: border-box; /* Include padding in the element's total width */
    flex: 1;
    max-width: 1020px;
    width: 100%;
    margin: auto;
    padding: 0 30px;
    background-color: var(--color-bg);
}

/*START OF HEADER*/
.site-header {
    background-color: var(--color-bg);
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    padding: 24px 30px 0 30px;
    box-sizing: border-box;
}

.header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-link {
    text-decoration: none;
    display: block;
}

.logo-word {
    display: block;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 44px;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-flip {
    display: inline-block;
    color: var(--color-red);
    transform: scaleX(-1);
}

.logo-dark {
    color: var(--color-ink-strong);
}

.logo-red {
    color: var(--color-red);
}

.logo-sub {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-sub-dark {
    color: var(--color-ink-strong);
}

.logo-sub-red {
    color: var(--color-red);
}

.header-search {
    display: flex;
    align-items: center;
    border: 1px solid #cccccc;
    border-radius: 3px;
    overflow: hidden;
    height: 38px;
    margin-top: 6px;
}

.header-search input[type="search"] {
    border: none;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
    width: 160px;
    font-family: var(--font-body);
}

.header-search button {
    background-color: var(--color-ink-strong);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-search button:hover {
    background-color: var(--color-red);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    margin-top: 6px;
}

.burger-menu span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--color-ink-strong);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header-tagline {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-ink-strong);
    margin: 14px 0 18px 0;
}

.rubrika-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 3px;
    margin: 0 0 24px 0;
    padding: 0;
    flex-wrap: wrap;
}

.rubrika-btn {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 14px 22px;
    color: white;
    white-space: nowrap;
}

.rubrika-red { background-color: var(--color-red); }
.rubrika-black { background-color: var(--color-ink-strong); }
.rubrika-gray { background-color: var(--color-btn-gray); color: var(--color-heading); }
.rubrika-blue { background-color: var(--color-btn-blue); }

.rubrika-btn.active {
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.35);
}

/* Responsive: stack nicely on small screens */
@media (max-width: 900px) {
    .logo-word { font-size: 34px; }

    .header-search {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .rubrika-nav .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .rubrika-nav .nav-links.active {
        display: flex;
    }

    .rubrika-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

/*END OF HEADER*/

/*START OF BREADCRUMB*/
#breadcrumb {
    display: flex; /* Use flexbox for alignment */
    justify-content: flex-start; /* Align with content, not centered */
    align-items: center; /* Center the items vertically */
    margin: 16px 0;
    font-size: 14px;
    color: var(--color-meta);
}

#breadcrumb a {
    text-decoration: none;
    color: var(--color-red);
}

#breadcrumb img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

#breadcrumb span {
    margin: 0 5px;
}
/*END OF BREADCRUMB*/

/*START OF FOOTER*/
.site-footer {
  padding: 40px 0 20px 0;
  background: transparent;
}

.footer-inner {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
  background-color: var(--color-bg);
  color: var(--color-heading);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 24px;
}

.footer-logo-word {
  font-size: 34px;
}

.footer-tagline {
  color: var(--color-footer-link);
  font-size: 14px;
  margin: 10px 0 16px 0;
  max-width: 340px;
}

.footer-links-col {
  display: flex;
  flex-wrap: wrap;
  gap: 0 48px;
}

.footer-col-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  width: 100%;
}

.footer-links-col .footer-col-title:not(:first-child) {
  margin-top: 18px;
}

/* Article list */
.footer-article-list {
  list-style: none;
  margin: 0 0 4px 0;
  padding: 0;
}

.footer-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}

.footer-article-item a {
  color: var(--color-footer-link);
  text-decoration: underline;
  font-size: 14px;
}

.footer-article-item a:hover {
  color: var(--color-heading);
}

/* Social icons (decorative — buttons carry no href/action, they do not navigate) */
.footer-social {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin: 4px 0 0 0;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    border: none;
    background-color: var(--color-heading);
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.social-icon:hover {
    transform: translateY(-1px);
    background-color: var(--color-red);
}

/* Divider */
.footer-divider {
  border: 0;
  border-top: 1px solid #dddddd;
  margin: 12px 0;
}

/* Bottom copyright */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: var(--color-footer-link);
  padding-bottom: 20px;
}

/* Responsive */
@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/*END OF FOOTER*/

/*START OF LIST PAGE*/
.page-list {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align items horizontally */
    margin-top: 40px;
}

.page-list.home {
    margin-top: 0;
}

.page-list h1{
    font-size: 50px;
    text-align: center;
}

.page-item{
    display: none;
    margin-bottom: 20px;
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit text color from parent */
    width: 100%; /* Ensure items take full width for centering */
    max-width: 1000px; /* Optional: Set a max width for the items */
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 16px;
}

/* AUTHORS LIST */
.author-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.author-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.author-card-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f2f2f2;
}

.author-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card-name {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-heading);
}

.author-card:hover .author-card-name {
    text-decoration: underline;
}

.author-card-bio {
    margin: 0;
    font-size: 14px;
    color: var(--color-body);
    line-height: 1.5;
}

/* START OF AUTHOR SINGLE */
.single-author-profile {
    width: 100%;
    box-sizing: border-box;
    margin: 24px 0 40px 0;
}

.single-author-box {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: center;
    margin-bottom: 40px;
}

.single-author-icon {
    flex-shrink: 0;
    width: 140px;
}

.single-author-icon img {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    object-fit: cover;
    display: block;
}

.single-author-details {
    flex: 1;
}

.single-author-name {
    margin: 0 0 8px 0;
    font-size: 30px;
    font-weight: 800;
    color: var(--color-heading);
}

.single-author-bio {
    color: var(--color-body);
    font-size: 16px;
    line-height: 1.6;
}

.author-posts-heading {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-heading);
    margin: 0 0 20px 0;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

@media (max-width: 700px) {
    .author-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-author-box {
        flex-direction: column;
        text-align: center;
    }
}
/* END OF AUTHOR SINGLE */

/* START OF SWIPER */
.page-item-home {
    display: flex;
    flex-direction: column; /* Change to column layout */
    align-items: center; /* Center align items horizontally */
    border: 1px solid #ccc; /* Change the color and style as needed */
    padding: 10px; /* Optional: Add some padding inside the border */
    margin: 10px 0; /* Optional: Add some margin between items */
    border-radius: 5px; /* Optional: Add rounded corners */
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit text color from parent */
    justify-content: space-between; /* Distribute space evenly */
    font-size: 1.2em;
    background-color: rgba(255, 255, 255, 0.808);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
    max-height: 550px;
    min-height: 550px; /* Set a minimum height for consistency */
  }
  
  .swiper-container {
    width: 100%;
    height: 650px;
    position: relative;
    overflow: hidden; /* Hide extra slides */
  }

  .swiper-wrapper {
    display: flex;
  }
  
  .swiper-slide {
    display: flex; /* Use flexbox for each slide */
    flex-direction: column; /* Stack content vertically */
    justify-content: space-between; /* Distribute space evenly */
    align-items: center; /* Center align items horizontally */
    height: 550px; /* Set a fixed height for all slides */
  }
/* END OF SWIPER */

.page-item-home:hover .page-title,
.page-item:hover .page-title{
    text-decoration: underline;
}

.page-image {
    width: 200px;          /* Fixed width */
    height: 135px;         /* Fixed height (same as your max-height) */
    overflow: hidden;      /* Crop overflow */
    flex-shrink: 0;        /* Prevent shrinking in flex layouts */
    margin-right: 20px;
}

.page-image.latest{
    margin-right: 0;
}

.page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* Crop without distortion */
    object-position: center;
    display: block;
}

.page-content {
    flex: 1; /* Take the remaining space */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-title {
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    color: var(--color-heading);
}

.page-description {
    margin: 5px 0;
    color: var(--color-body);
    font-size: 15px;
}

.page-date {
    color: var(--color-meta);
    font-size: 13px;
}

.button-container {
    display: flex; /* Use flexbox to center the button */
    justify-content: center; /* Center the button horizontally */
    margin: 20px auto; /* Space above the button */
}

#load-more {
    background-color: var(--color-red); /* Green background */
    color: white; /* Button text color */
    border: none; /* Remove border */
    display: none;
    padding: 10px 20px; /* Padding for the button */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth background color transition */
}

#load-more:hover {
    background-color: var(--color-red-dark);/* Darker shade on hover */
}

#load-more:focus {
    outline: none; /* Remove outline on focus */
}
/*END OF LIST PAGE*/

/*START OF SINGLE PAGE*/
.post{
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}

.post-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f2f2f2;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.post-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--color-heading);
    margin: 0 0 14px 0;
}

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.post-author {
    display: inline-flex;
    align-items: center;
    color: var(--color-byline);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.post-author:hover {
    text-decoration: underline;
}

.author-icon {
    vertical-align: middle;
    margin-right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.post-description {
    font-weight: 700;
    margin-bottom: 1.2em;
    line-height: 1.6;
    font-size: 19px;
    color: var(--color-body-strong);
}

.post-content{
    margin-bottom: 3em;
    line-height: 1.75;
    font-size: 17px;
    color: var(--color-body);
}

.post-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-heading);
    margin: 1.4em 0 0.6em 0;
}
/* SHARE BAR (decorative — buttons carry no href/action, they do not navigate) */
.share-bar {
    display: flex;
    gap: 10px;
    margin: 0 0 1.2em 0;
}

.share-bar-bottom {
    margin: 1.5em 0 0 0;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-red);
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.share-btn:hover {
    transform: translateY(-1px);
    background-color: var(--color-red-dark);
}
/*END OF SINGLE PAGE*/


/*START OF LOADING BUTTON*/
[id^="summary-"] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.loading-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;    /* Center vertically */
}

.search-loading {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid var(--color-red);
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
/*END OF LOADING BUTTON*/


@media screen and (max-width: 700px) {
    .post {
        width: 100%;
    }

    #breadcrumb {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #breadcrumb span {
        margin: 5px 0;
    }
}


/* HOMEPAGE — narrow teaser list (left) + featured hero (right) */
.home-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  align-items: start;
  gap: 36px;
  margin-top: 8px;
}

.byline {
  color: var(--color-byline);
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.byline:hover { text-decoration: underline; }

.meta-dot { color: var(--color-meta); margin: 0 5px; font-size: 13px; }

.meta-date { color: var(--color-meta); font-size: 13px; }

.cat-label {
  color: var(--color-byline);
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cat-label:hover { text-decoration: underline; }

/* LEFT: compact teaser list */
.home-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.teaser-item {
  display: flex;
  flex-direction: column;
}

.teaser-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f2f2f2;
  margin-bottom: 8px;
}

.teaser-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.teaser-meta { margin-bottom: 4px; }

.teaser-title {
  display: block;
  color: var(--color-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
}

.teaser-title:hover { text-decoration: underline; }

/* RIGHT: featured hero */
.home-hero {
  display: flex;
  flex-direction: column;
}

.home-hero-title-link { text-decoration: none; }

.home-hero-title {
  margin: 0 0 14px 0;
  color: var(--color-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.home-hero-title-link:hover .home-hero-title { text-decoration: underline; }

.home-hero-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f2f2f2;
  margin-bottom: 12px;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero-meta { margin-bottom: 8px; }

.home-hero-desc {
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.home-hero-desc .byline {
  color: var(--color-byline);
  font-weight: 800;
  text-transform: none;
  font-size: inherit;
  margin-right: 4px;
}

/* MORE ARTICLES — 2-column card grid below the fold */
.home-more {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid #e5e5e5;
}

.home-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 36px;
}

.card-item { display: flex; flex-direction: column; }

.card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f2f2f2;
  margin-bottom: 8px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-title {
  display: block;
  color: var(--color-heading);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  text-decoration: none;
}

.card-title:hover { text-decoration: underline; }

/* on rubrika list pages, card-item doubles as the load-more JS hook
   (.page-item) — its display:none must win until revealed via inline style */
.card-item.page-item {
  display: none;
}

/* RUBRIKA LIST PAGE HEADER */
.rubrika-band {
  background-color: var(--color-band-bg);
  margin: 0 -30px 24px -30px;
  padding: 28px 30px;
}

.rubrika-heading {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  color: var(--color-heading);
}

.rubrika-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-body);
  letter-spacing: 0.03em;
  margin: 0 0 20px 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 36px;
}

@media (max-width: 700px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .home-layout {
    grid-template-columns: 1fr;
  }

  .home-more-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-title {
    font-size: 24px;
  }
}
