/* ============================================================
   HOME PAGE — figurydeco.pl mockup home sections.
   Mockup: templaty/nowe-figurydeco/index.html
   Sections: HERO, CATS (5 tiles bento), USP bar, FEATURED PRODUCTS
     (.prod cards + tabs), EDITORIAL split, BROWSE 8 mini circles,
     REVIEWS, BLOG-HOME 4-card grid, responsive.
   Newsletter strip + footer live in layout.css (every page).
   ============================================================ */

/* ============== HERO SLIDER (classic, WooCommerce-style) ============== */
.cslider {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 720;     /* dopasowane do desktop images (~2.67:1) */
    min-height: 440px;
    max-height: 78vh;
    overflow: hidden;
    background: var(--ink);
    isolation: isolate;
}
.cslider__track { position: absolute; inset: 0; }

.cslider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease, visibility 0s linear .9s;
    z-index: 1;
}
.cslider__slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity .9s ease, visibility 0s linear 0s;
    z-index: 2;
}

.cslider__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 9s ease;
    overflow: hidden;
}
.cslider__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.cslider__slide.is-active .cslider__media { transform: scale(1.05); }

/* Per-slide focal points (object-position) */
.cslider__slide--popart .cslider__media img { object-position: 70% center; }
.cslider__slide--fountains .cslider__media img { object-position: center 45%; }
.cslider__slide--venve .cslider__media img { object-position: center 65%; }

.cslider__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(20,20,20,.72) 0%,
            rgba(20,20,20,.55) 30%,
            rgba(20,20,20,.18) 55%,
            rgba(20,20,20,0)   75%);
    z-index: 1;
}

.cslider__inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
}
.cslider__copy {
    max-width: 580px;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .9s ease .2s, opacity .9s ease .2s;
}
.cslider__slide.is-active .cslider__copy { transform: translateY(0); opacity: 1; }

.cslider__eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-2);
    font-weight: 500;
    margin-bottom: 18px;
    padding: 6px 12px;
    border: 1px solid rgba(168,196,77,.6);
    border-radius: 2px;
}
.cslider__title {
    font-family: var(--serif);
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 22px;
    color: #fff;
}
.cslider__title em { font-style: italic; color: var(--accent-2); }
.cslider__lead {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,.86);
    margin: 0 0 32px;
    max-width: 520px;
}
.cslider__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.cslider__ctas .btn--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.cslider__ctas .btn--ghost {
    color: #fff;
    border-color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(6px);
}
.cslider__ctas .btn--ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.12);
}

.cslider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
    backdrop-filter: blur(6px);
}
.cslider__arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.05);
}
.cslider__arrow svg { width: 22px; height: 22px; }
.cslider__arrow--prev { left: 28px; }
.cslider__arrow--next { right: 28px; }

.cslider__controls {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 5;
    padding: 0 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
}
.cslider__dots {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cslider__dot {
    width: 36px;
    height: 4px;
    background: rgba(255,255,255,.28);
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .25s ease, width .35s ease;
}
.cslider__dot:hover { background: rgba(255,255,255,.45); }
.cslider__dot.is-active {
    width: 72px;
    background: rgba(255,255,255,.28);
}
.cslider__dot.is-active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform-origin: left center;
    animation: cslider-progress var(--cslider-delay, 6s) linear forwards;
}
.cslider.is-paused .cslider__dot.is-active::after { animation-play-state: paused; }
@keyframes cslider-progress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.cslider__counter {
    color: rgba(255,255,255,.7);
    font-family: var(--serif);
    font-size: 18px;
    letter-spacing: 0.08em;
}
.cslider__counter strong {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    margin-right: 4px;
}

.cslider__pause {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background .25s ease;
}
.cslider__pause:hover { background: rgba(255,255,255,.22); }
.cslider__pause svg { width: 14px; height: 14px; }
.cslider__pause .icon-play  { display: none; }
.cslider.is-paused .cslider__pause .icon-play  { display: block; }
.cslider.is-paused .cslider__pause .icon-pause { display: none; }

@media (prefers-reduced-motion: reduce) {
    .cslider__slide,
    .cslider__copy,
    .cslider__media,
    .cslider__dot.is-active::after { transition: none !important; animation: none !important; }
    .cslider__slide.is-active .cslider__media { transform: scale(1.04); }
}

/* ============== CATS (5 tiles bento) ============== */
.cats { padding: 80px 0; }
.cats__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 600px;
}
.cat {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-soft);
    background-size: cover;
    background-position: center;
    transition: transform .4s ease;
}
.cat:hover { transform: translateY(-3px); opacity: 1; }
.cat:hover .cat__overlay { opacity: 1; }
.cat:nth-child(1) { grid-row: 1 / span 2; }
.cat__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 15%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.85) 100%);
    opacity: .95;
    transition: opacity .3s;
}
.cat__content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    color: #fff;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.cat__kicker {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-weight: 600;
}
.cat__content h3 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.05;
    margin: 0 0 8px;
    color: #fff;
}
.cat--lg .cat__content h3 { font-size: clamp(30px, 3vw, 44px); }
.cat__cta {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,.4);
    padding-bottom: 2px;
    display: inline-block;
}

/* ============== USP BAR ============== */
.usp {
    background: var(--ink);
    color: #ebe6da;
    padding: 28px 0;
    border-top: 1px solid var(--accent);
}
.usp__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.usp__item { display: flex; align-items: center; gap: 16px; }
.usp__item svg {
    width: 36px;
    height: 36px;
    color: var(--accent-2);
    flex-shrink: 0;
}
.usp__item strong { display: block; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.usp__item span { font-size: 12px; color: #b8b1a0; letter-spacing: 0.02em; }

/* ============================================================
   PRODUCT CARDS (.prod) — also used on category & related.
   ============================================================ */
.products { padding: 90px 0; }

.tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-soft);
    padding: 4px;
    border-radius: 999px;
}
.tabs__btn {
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-2);
    transition: all var(--transition);
    border: 0;
    background: none;
    cursor: pointer;
    font-family: inherit;
}
.tabs__btn:hover { color: var(--ink); opacity: 1; }
.tabs__btn.is-active { background: var(--ink); color: #fff; }

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.prod {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all .25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.prod:hover { border-color: var(--line-2); box-shadow: var(--shadow); transform: translateY(-2px); opacity: 1; }

.prod__media { position: relative; aspect-ratio: 1; background: var(--bg-soft); overflow: hidden; }
.prod__media img,
.prod__media picture { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prod:hover .prod__media img { transform: scale(1.05); }
.prod__media-link { display: block; width: 100%; height: 100%; }

.prod__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,.95);
    color: var(--ink);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 600;
    z-index: 2;
}
.prod__badge--new  { background: var(--accent);     color: #fff; }
.prod__badge--sale { background: var(--terracotta); color: #fff; }

.prod__like {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.92);
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink-2);
    transition: all var(--transition);
    z-index: 3;
    cursor: pointer;
}
.prod__like:hover { color: var(--accent); background: #fff; opacity: 1; }
.prod__like.is-active,
.prod__like[data-in-wishlist="1"] { color: var(--terracotta); }

.prod__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1 1 auto; } /* flex:1 → body fills the stretched card so .prod__row (margin-top:auto) sits at the bottom — kills the dead white space below the price */
.prod__cat {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
    display: block;
    margin-bottom: 6px;
}
.prod__title {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 14px;
    min-height: 48px;
}
.prod__title a { display: block; }
.prod__row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.prod__price {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
}
.prod__price-old {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--ink-3);
    text-decoration: line-through;
    margin-left: 8px;
}
.prod__add {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.prod__add:hover { background: var(--accent); transform: rotate(90deg); opacity: 1; }
.products__more { text-align: center; margin-top: 50px; }

/* ============== EDITORIAL SPLIT (Nasza pracownia) ============== */
.editorial { background: var(--bg-soft); padding: 100px 0; }
.editorial__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.editorial__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}
.editorial__media img { width: 100%; height: 100%; object-fit: cover; }
.editorial__copy { max-width: 480px; }
.editorial__copy p {
    color: var(--ink-2);
    font-size: 16px;
    line-height: 1.7;
    margin: 18px 0 28px;
}
.editorial__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 36px;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}
.editorial__list li { font-size: 13px; color: var(--ink-2); line-height: 1.4; }
.editorial__list strong {
    display: block;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 4px;
}

/* ============== BROWSE 8-circle grid ============== */
.browse { padding: 90px 0; }
.browse__grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}
.browse__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: transform var(--transition);
}
.browse__item:hover { transform: translateY(-4px); opacity: 1; }
.browse__img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-soft);
    border: 1px solid var(--line);
    transition: all var(--transition);
}
.browse__item:hover .browse__img {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}
.browse__item span { font-size: 13px; font-weight: 500; color: var(--ink); }

/* ============== REVIEWS ============== */
.reviews { background: var(--bg-soft); padding: 90px 0; }
.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
    font-size: 14px;
    color: var(--ink-2);
}
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}
.review .stars { font-size: 14px; }
.review p {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.4;
    color: var(--ink);
    margin: 14px 0 20px;
}
.review__author {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-3);
}

/* ============== BLOG HOME ============== */
.blog-home { padding: 90px 0; background: var(--bg); }
.blog-home__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.post {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.post:hover {
    border-color: var(--line-2);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    opacity: 1;
}
.post__media {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-soft);
}
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post:hover .post__media img { transform: scale(1.04); }
.post__cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,.95);
    color: var(--ink);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: 999px;
    font-weight: 600;
    z-index: 2;
}
.post__cat--lg { font-size: 11px; padding: 8px 14px; top: 20px; left: 20px; }
.post__body { flex: 1; display: flex; flex-direction: column; padding: 22px 24px 24px; }
.post__meta { font-size: 12px; letter-spacing: 0.04em; color: var(--ink-3); margin-bottom: 10px; }
.post__title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 12px;
}
.post__title a { color: inherit; transition: color var(--transition); }
.post__title a:hover { color: var(--accent-dark); opacity: 1; }
.post__excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-2);
    margin: 0 0 14px;
    flex: 1;
}
.post__link {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 600;
    align-self: flex-start;
}
.post__link:hover { color: var(--ink); opacity: 1; }
.post--lg { grid-row: span 1; }
.post--lg .post__media { aspect-ratio: 16/12; }
.post--lg .post__title { font-size: 28px; }
.post--lg .post__body { padding: 28px 32px 32px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    .cats__grid { grid-template-columns: 1fr 1fr; height: auto; grid-auto-rows: 280px; }
    .cat:nth-child(1) { grid-row: span 1; grid-column: span 2; }
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
    .browse__grid { grid-template-columns: repeat(4, 1fr); }
    .editorial__grid { grid-template-columns: 1fr; gap: 40px; }
    .usp__grid { grid-template-columns: 1fr 1fr; }
    .reviews__grid { grid-template-columns: 1fr; }
    .blog-home__grid { grid-template-columns: 1fr 1fr; }
    .post--lg { grid-column: span 2; }
}
@media (max-width: 900px) {
    .cslider { height: clamp(440px, 70vh, 580px); }
    .cslider__arrow { width: 44px; height: 44px; }
    .cslider__arrow--prev { left: 12px; }
    .cslider__arrow--next { right: 12px; }
    .cslider__controls { padding: 0 16px 20px; }
    .cslider__title { font-size: clamp(32px, 7vw, 52px); }
    .cslider__lead { font-size: 15px; }
    .cslider__slide::before {
        background:
            linear-gradient(180deg,
                rgba(20,20,20,.45) 0%,
                rgba(20,20,20,.55) 40%,
                rgba(20,20,20,.78) 100%);
    }
    .cslider__inner { padding: 0 20px 90px; align-items: flex-end; }
    .cslider__copy  { max-width: 100%; }
    .cslider__pause { top: 16px; right: 16px; }
}
@media (max-width: 720px) {
    .prod-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .prod__title { font-size: 16px; min-height: 40px; }
    .prod__price { font-size: 18px; }
    .browse__grid { grid-template-columns: repeat(3, 1fr); }
    .editorial { padding: 60px 0; }
    .editorial__list { grid-template-columns: 1fr; gap: 12px; padding: 18px 0; }
    .reviews { padding: 60px 0; }
    .blog-home__grid { grid-template-columns: 1fr; }
    .post--lg { grid-column: span 1; }
    .post--lg .post__title { font-size: 22px; }
    .tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .tabs::-webkit-scrollbar { display: none; }
}
@media (max-width: 560px) {
    .cslider__counter { display: none; }
    .cslider__dot { width: 28px; }
    .cslider__dot.is-active { width: 56px; }
}

/* ======================================================== */
/* ===== BLOG LIST / FEATURED (widok: pages/blog.inc.php) == */
/* .post* są wyżej w tym pliku; tu dochodzą: filtr + featured + grid */
/* ======================================================== */
.blog-cats { border-bottom: 1px solid var(--line); background: #fff; }
.blog-cats__inner { display: flex; gap: 6px; padding: 16px 24px; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
.blog-cats__inner::-webkit-scrollbar { display: none; }
.blog-cat { white-space: nowrap; padding: 9px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--ink-2); border: 1px solid var(--line-2, #e5e2da); transition: all .2s; }
.blog-cat:hover { color: var(--ink); border-color: var(--ink); }
.blog-cat.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.blog-featured { padding: 50px 0 24px; }
.bfeat { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; background: var(--bg-soft); border-radius: var(--radius-lg); overflow: hidden; align-items: stretch; transition: transform .25s; }
.bfeat:hover { transform: translateY(-2px); }
.bfeat__media { position: relative; aspect-ratio: 16/10; background: #ddd; }
.bfeat__media img { width: 100%; height: 100%; object-fit: cover; }
.bfeat__copy { display: flex; flex-direction: column; justify-content: center; padding: 40px 50px; }
.bfeat__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 40px); font-weight: 600; line-height: 1.1; color: var(--ink); margin: 8px 0 16px; }
.bfeat__copy p { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0 0 18px; }

.blog-grid-sec { padding: 30px 0 70px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* pojedynczy artykuł — czytelna kolumna prozy (CMS daje tylko treść HTML) */
.blog-article-sec { padding: 30px 0 70px; }
.blog-article-body { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.75; color: var(--ink-2); }
.blog-article-body h2, .blog-article-body h3 { font-family: 'Cormorant Garamond', serif; color: var(--ink); line-height: 1.2; margin: 1.6em 0 .5em; }
.blog-article-body h2 { font-size: clamp(24px, 3vw, 34px); }
.blog-article-body h3 { font-size: clamp(20px, 2.4vw, 26px); }
.blog-article-body p { margin: 0 0 1.2em; }
.blog-article-body ul, .blog-article-body ol { margin: 0 0 1.2em 1.2em; }
.blog-article-body img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1.4em 0; }
.blog-article-body a { color: var(--accent-dark); text-decoration: underline; }

@media (max-width: 1024px) {
  .bfeat { grid-template-columns: 1fr; }
  .bfeat__copy { padding: 32px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
}
