/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/styles/global/_blog-archive.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/** Хедер: горизонтальний ряд замість бургера. */
/* Shared section eyebrow / subtitle style — one source of truth.
   Use via `@include eyebrow;` (colour + margin stay per-block) or the
   global `.subtitle` class. */
/* ===========================================================
   Кнопки-пігулки — ОДНЕ джерело правди для розмірів.

   Раніше ту саму кнопку було написано в кількох місцях окремо, і вони
   розповзлись: .process-btn 15/30 gap 8, .cta-btn 13/22 gap 10,
   .btn-secondary 14/28. Тобто «однакова» кнопка мала різні розміри.

   Тепер геометрія лише тут; споживачі: .btn-primary / .btn-secondary
   (банер), .process-btn (CTA), .cta-btn (services), core/button (is-style-*).

   Прозора рамка 1.5px у базі — щоб обведений варіант мав ІДЕНТИЧНУ
   геометрію, а не був на 3px нижчим через товщину рамки.
   =========================================================== */
/* темна пігулка — головна кнопка (банер «Замовити сайт») */
/* амбер пігулка — CTA («Обговорити проєкт», services) */
/* обведена пігулка — вторинна кнопка (банер «Мої послуги») */
/* стрілка ↗ через CSS — для кнопок, куди SVG у розмітку не вставити
   (core/button). Там, де SVG уже є в розмітці (.btn-primary, .cta-btn),
   анімацію робить `svg` у pill-base. */
/* ===========================================================
   Blog archive page — PHP-rendered grid + AJAX category filter.
   morph keyframe lives in global _effects.scss.
   =========================================================== */
.blog-archive {
  background: var(--wp--preset--color--background);
  /* keep the footer near the bottom even on sparse category pages,
     without a wrapper min-height that inflates in full-page screenshots */
  min-height: calc(100vh - 80px);
}
.blog-archive .container {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(var(--site-container) + var(--site-gutter) * 2);
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .blog-archive .container {
    padding: 0 var(--site-gutter);
  }
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--wp--preset--color--cream);
  padding: 120px 0 56px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .page-hero {
    padding: 150px 0 70px;
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 40px;
  width: 300px;
  height: 300px;
  background: var(--wp--preset--color--primary);
  opacity: 0.45;
  border-radius: 60% 40% 55% 45%/50% 60% 40% 50%;
  animation: morph 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@media screen and (min-width: 1024px) {
  .page-hero::before {
    width: 380px;
    height: 380px;
  }
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .page-hero-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
@media screen and (min-width: 1024px) {
  .page-hero .page-hero-top {
    gap: 40px;
    margin-bottom: 44px;
  }
}
.page-hero .page-hero-label {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wp--preset--color--amber-dark);
}
.page-hero .page-hero-label::before {
  content: "";
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--wp--preset--color--amber-dark);
}
.page-hero .page-hero-heading {
  margin: 0;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--wp--preset--color--foreground);
}
.page-hero .page-hero-heading .highlight {
  position: relative;
  display: inline-block;
}
.page-hero .page-hero-heading .highlight::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: -4px;
  right: -4px;
  height: 13px;
  background: var(--wp--preset--color--primary);
  z-index: -1;
  border-radius: 3px;
  transform: skewX(-3deg);
}
.page-hero .page-hero-sub {
  margin: 0;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--wp--preset--color--muted);
  max-width: 380px;
}
.page-hero .filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-hero .filter-tag {
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(8, 8, 8, 0.06);
  border: 1.5px solid transparent;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 500;
  color: var(--wp--preset--color--muted);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.page-hero .filter-tag:hover {
  background: rgba(8, 8, 8, 0.1);
  color: var(--wp--preset--color--foreground);
}
.page-hero .filter-tag.active {
  background: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
  border-color: var(--wp--preset--color--foreground);
}

/* ── BODY ── */
.blog-archive-body {
  background: var(--wp--preset--color--background);
  padding: 110px 0 120px;
}
@media screen and (min-width: 1024px) {
  .blog-archive-body {
    padding: 140px 0 150px;
  }
}
.blog-archive-body {
  /* ── FEATURED ── */
}
.blog-archive-body .featured-wrap {
  margin-bottom: 56px;
}
.blog-archive-body .featured-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--wp--preset--color--foreground);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}
@media screen and (min-width: 1024px) {
  .blog-archive-body .featured-card {
    grid-template-columns: 1fr 1fr;
  }
}
.blog-archive-body .featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(8, 8, 8, 0.2);
}
.blog-archive-body .featured-card:hover .featured-read {
  background: var(--wp--preset--color--amber-dark);
}
.blog-archive-body .featured-thumb {
  position: relative;
  min-height: 220px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .blog-archive-body .featured-thumb {
    min-height: 340px;
  }
}
.blog-archive-body .featured-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-archive-body .featured-thumb-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--foreground);
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.blog-archive-body .featured-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .blog-archive-body .featured-body {
    padding: 48px 48px 44px;
  }
}
.blog-archive-body .featured-tag {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wp--preset--color--primary);
  margin-bottom: 16px;
}
.blog-archive-body .featured-title {
  margin: 0 0 16px;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--wp--preset--color--background);
}
.blog-archive-body .featured-excerpt {
  margin: 0 0 28px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  flex: 1;
}
.blog-archive-body .featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-archive-body .featured-date {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.35);
}
.blog-archive-body .featured-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--foreground);
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.2s;
}
.blog-archive-body {
  /* ── POSTS GRID ── */
}
.blog-archive-body .posts-section-label {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--wp--preset--color--muted);
}
.blog-archive-body .posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 68px;
  align-items: stretch;
  transition: opacity 0.2s;
}
@media screen and (min-width: 1024px) {
  .blog-archive-body .posts-grid {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 768px) {
  .blog-archive-body .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .blog-archive-body .posts-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.blog-archive-body .posts-grid.is-loading {
  opacity: 0.45;
  pointer-events: none;
}
.blog-archive-body .posts-empty {
  grid-column: 1/-1;
  color: var(--wp--preset--color--muted);
  padding: 40px 0;
  text-align: center;
}
.blog-archive-body .post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--wp--preset--color--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}
.blog-archive-body .post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(8, 8, 8, 0.09);
  border-color: rgba(8, 8, 8, 0.07);
}
.blog-archive-body .post-card:hover .post-read::after {
  transform: translate(3px, -3px);
}
.blog-archive-body .post-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #F0EDE6, #E8E3D8);
  overflow: hidden;
}
.blog-archive-body .post-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-archive-body .post-thumb-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--foreground);
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.blog-archive-body .post-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-archive-body .post-date {
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  color: var(--wp--preset--color--muted);
  margin-bottom: 8px;
}
.blog-archive-body .post-title {
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--wp--preset--color--foreground);
  margin-bottom: 14px;
  transition: color 0.2s;
}
@media screen and (min-width: 768px) {
  .blog-archive-body .post-title {
    font-size: 20px;
  }
}
.blog-archive-body .post-read {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--wp--preset--font-family--body-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--wp--preset--color--foreground);
}
.blog-archive-body .post-read::after {
  content: "";
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-color: currentColor;
  transition: transform 0.2s;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272.2%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27%3E%3Cpath d=%27M7 17L17 7M7 7h10v10%27/%3E%3C/svg%3E") center/contain no-repeat;
}
.blog-archive-body {
  /* ── PAGINATION ── */
}
.blog-archive-body .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-archive-body .page-btn {
  box-sizing: border-box;
  min-width: 42px;
  height: 42px;
  padding: 0 4px;
  border-radius: 10px;
  background: var(--wp--preset--color--card);
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--heading-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--wp--preset--color--foreground);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.blog-archive-body .page-btn:hover {
  background: var(--wp--preset--color--background);
  border-color: rgba(8, 8, 8, 0.12);
  transform: translateY(-2px);
}
.blog-archive-body .page-btn.active {
  background: var(--wp--preset--color--foreground);
  color: var(--wp--preset--color--background);
  border-color: var(--wp--preset--color--foreground);
}
.blog-archive-body .page-btn svg {
  width: 14px;
  height: 14px;
}
.blog-archive-body .page-dots {
  color: var(--wp--preset--color--muted);
  padding: 0 4px;
  font-size: 14px;
}
/*!******************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/styles/pages/archive.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/** Хедер: горизонтальний ряд замість бургера. */
/* Shared section eyebrow / subtitle style — one source of truth.
   Use via `@include eyebrow;` (colour + margin stay per-block) or the
   global `.subtitle` class. */
/* ===========================================================
   Кнопки-пігулки — ОДНЕ джерело правди для розмірів.

   Раніше ту саму кнопку було написано в кількох місцях окремо, і вони
   розповзлись: .process-btn 15/30 gap 8, .cta-btn 13/22 gap 10,
   .btn-secondary 14/28. Тобто «однакова» кнопка мала різні розміри.

   Тепер геометрія лише тут; споживачі: .btn-primary / .btn-secondary
   (банер), .process-btn (CTA), .cta-btn (services), core/button (is-style-*).

   Прозора рамка 1.5px у базі — щоб обведений варіант мав ІДЕНТИЧНУ
   геометрію, а не був на 3px нижчим через товщину рамки.
   =========================================================== */
/* темна пігулка — головна кнопка (банер «Замовити сайт») */
/* амбер пігулка — CTA («Обговорити проєкт», services) */
/* обведена пігулка — вторинна кнопка (банер «Мої послуги») */
/* стрілка ↗ через CSS — для кнопок, куди SVG у розмітку не вставити
   (core/button). Там, де SVG уже є в розмітці (.btn-primary, .cta-btn),
   анімацію робить `svg` у pill-base. */
.blog h1.wp-block-heading {
  max-width: var(--wp--style--global--content-size);
  padding-bottom: 40px;
}

/*# sourceMappingURL=archive.css.map*/