@font-face {
  font-family: "Vazirmatn";
  src: url("../fonts/Vazirmatn[wght].woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0b0d0e;
  --black-2: #141718;
  --ink: #172026;
  --paper: #f2f0e9;
  --paper-2: #e9e6dc;
  --white: #fff;
  --acid: #d7ff45;
  --orange: #ff5d35;
  --blue: #5268ff;
  --gray: #7a8388;
  --line: rgba(18, 26, 30, 0.14);
  --radius: 28px;
  --container: 1380px;
  --font: "Vazirmatn", Tahoma, sans-serif;
  --container-gutter: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  direction: rtl;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.95;
}
body.is-locked {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.35;
}
.container,
.pblog-container,
.pukasaze-archive__container,
.single-container {
  width: min(calc(100% - var(--container-gutter)), var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  padding: 9px 16px;
  background: var(--acid);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.scroll-progress {
  position: fixed;
  z-index: 500;
  top: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--acid));
  box-shadow: 0 0 16px var(--acid);
}

.utility {
  background: var(--black);
  color: #adb5b8;
  font-size: 10px;
}
.utility__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility p {
  margin: 0;
}
.utility p span {
  color: var(--acid);
}
.utility__links {
  display: flex;
  align-items: center;
  gap: 17px;
}
.utility__links a:hover {
  color: var(--acid);
}
.utility__links i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #5f676b;
}

.header {
  position: sticky;
  z-index: 200;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 13, 14, 0.9);
  color: var(--white);
  backdrop-filter: blur(18px) saturate(150%);
}
.header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 38px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}
.logo__mark {
  width: 44px;
  height: 44px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.logo__mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.logo__text {
  display: flex;
  flex-direction: column;
}
.logo__text strong {
  font-size: 18px;
  line-height: 1.25;
}
.logo__text small {
  color: #8e999e;
  font-size: 8px;
  letter-spacing: 0.2px;
}

.desktop-nav {
  display: block;
  overflow: visible;
  margin-inline: auto;
}

.desktop-menu,
.desktop-menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
}

.desktop-menu > li {
  position: relative;
}

.desktop-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-block: 28px;
  color: #c9d0d3;
  font-size: 12px;
  font-weight: 650;
}

.desktop-menu > li > a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--acid);
  transition: width 0.25s;
}

.desktop-menu > li:hover > a,
.desktop-menu > li:focus-within > a,
.desktop-menu > .current-menu-item > a,
.desktop-menu > .current-menu-ancestor > a {
  color: var(--white);
}

.desktop-menu > li:hover > a::before,
.desktop-menu > li:focus-within > a::before,
.desktop-menu > .current-menu-item > a::before,
.desktop-menu > .current-menu-ancestor > a::before {
  width: 100%;
}

.desktop-menu .menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.2s;
}

.desktop-menu .menu-item-has-children:hover > a::after,
.desktop-menu .menu-item-has-children:focus-within > a::after {
  transform: rotate(135deg);
}

.desktop-menu .sub-menu {
  display: block;
  position: absolute;
  z-index: 1000;
  top: calc(100% - 8px);
  right: 0;
  width: 250px;
  padding: 10px;
  border: 1px solid rgba(18, 28, 32, 0.1);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(18, 28, 32, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.desktop-menu li:hover > .sub-menu,
.desktop-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.desktop-menu .sub-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 9px;
  color: #273338;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  transition:
    color 0.2s,
    background-color 0.2s;
}

.desktop-menu .sub-menu a:hover,
.desktop-menu .sub-menu a:focus {
  color: var(--orange);
  background: #f2f4f1;
}

.header__tools {
  display: flex;
  align-items: center;
  gap: 9px;
}
.tool-button {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  transition: 0.25s;
}
.tool-button:hover {
  color: var(--black);
  background: var(--acid);
  border-color: var(--acid);
  transform: rotate(-8deg);
}
.tool-button svg {
  width: 20px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 7px;
  padding-right: 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.header-phone small,
.header-phone strong {
  display: block;
}
.header-phone small {
  color: #849096;
  font-size: 7px;
}
.header-phone strong {
  color: var(--white);
  font-size: 11px;
}
.menu-button {
  display: none;
}

.search-panel {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(7, 9, 10, 0.93);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}
.search-panel.is-open {
  opacity: 1;
  visibility: visible;
}
.search-panel__inner {
  width: min(800px, 100%);
  transform: translateY(25px);
  transition: transform 0.35s;
}
.search-panel.is-open .search-panel__inner {
  transform: translateY(0);
}
.search-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--white);
}
.search-panel__top p {
  margin: 0;
  font-size: 13px;
}
.search-panel__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 24px;
}
.search-form {
  height: 82px;
  display: grid;
  grid-template-columns: 1fr 82px;
  overflow: hidden;
  border-bottom: 2px solid var(--acid);
}
.search-form input {
  min-width: 0;
  padding-inline: 5px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 500;
}
.search-form input::placeholder {
  color: #667075;
}
.search-form button {
  display: grid;
  place-items: center;
  border: 0;
  color: var(--black);
  background: var(--acid);
}
.search-form button svg {
  width: 27px;
}
.search-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.search-hints span {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  color: #8f999e;
  font-size: 9px;
}

.drawer-overlay {
  position: fixed;
  z-index: 298;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  z-index: 300;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(88vw, 380px);
  overflow-y: auto;
  direction: rtl;
  background: var(--black);
  color: var(--white);
  box-shadow: 25px 0 70px rgba(0, 0, 0, 0.4);
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(0.22, 0.8, 0.25, 1);
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.drawer__close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 24px;
}
.drawer__search {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr 48px;
  margin: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
}
.drawer__search input {
  min-width: 0;
  padding-inline: 13px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: #171a1b;
}
.drawer__search button {
  display: grid;
  place-items: center;
  border: 0;
  color: var(--black);
  background: var(--acid);
}
.drawer__search svg {
  width: 19px;
}

.mobile-nav,
.mobile-menu {
  display: block;
  width: 100%;
}

.mobile-menu,
.mobile-menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu > li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu > li > a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: #d8dddf;
  font-size: 12px;
}

.mobile-menu > .menu-item-has-children > a {
  padding-left: 70px;
}

.mobile-menu .submenu-toggle {
  position: absolute;
  top: 0;
  left: 12px;
  z-index: 2;
  width: 48px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--acid);
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.mobile-menu .submenu-toggle span {
  display: block;
  transition: transform 0.2s;
}

.mobile-menu .submenu-toggle.is-open span {
  transform: rotate(45deg);
}

.mobile-menu .sub-menu {
  max-height: 0;
  overflow: hidden;
  background: #171c1e;
  transition: max-height 0.3s ease;
}

.mobile-menu .sub-menu li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu .sub-menu a {
  display: block;
  padding: 13px 32px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.mobile-menu .sub-menu a:hover,
.mobile-menu .sub-menu a:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.drawer__contact {
  margin: 22px;
  padding: 20px;
  border-radius: 16px;
  color: var(--black);
  background: var(--acid);
}
.drawer__contact small,
.drawer__contact a {
  display: block;
}
.drawer__contact small {
  font-size: 8px;
}
.drawer__contact a {
  font-size: 19px;
  font-weight: 800;
}

.footer {
  padding-top: 80px;
  background: var(--black);
  color: #758186;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 65px;
  padding-bottom: 60px;
}
.logo--footer {
  color: var(--white);
}
.footer-about > p {
  max-width: 360px;
  margin: 22px 0;
  font-size: 13px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 9px;
}
.footer-socials a:hover {
  color: var(--black);
  background: var(--acid);
}
.footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 14px;
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer li {
  margin-bottom: 7px;
}
.footer li a {
  font-size: 11px;
}
.footer li a:hover {
  color: var(--acid);
}
.footer-contact small {
  display: block;
  color: #4f5d62;
  font-size: 9px;
}
.footer-contact p,
.footer-contact a {
  display: block;
  margin: 0;
  color: #929da1;
  font-size: 11px;
}
.footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}
.footer__bottom p {
  margin: 0;
}
.footer__bottom div {
  display: flex;
  gap: 20px;
}

/* Light industrial theme */
body {
  font-size: 17px;
  background: #f7f7f3;
}
.utility {
  background: #e9ede9;
  color: #59656a;
  font-size: 12px;
}
.utility p span {
  color: #0da184;
}
.utility__links a:hover {
  color: var(--orange);
}
.utility__links i {
  background: #aab2af;
}
.header {
  border-bottom: 1px solid rgba(20, 32, 38, 0.1);
  background: rgba(255, 255, 252, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 35px rgba(27, 39, 43, 0.045);
}
.logo__text small {
  color: #737f83;
  font-size: 10px;
}
.desktop-menu {
  gap: 34px;
}
.desktop-menu > li > a {
  color: #4b575c;
  font-size: 15px;
  font-weight: 700;
}
.desktop-menu > li > a::before {
  height: 3px;
  background: var(--orange);
}
.desktop-menu > li:hover > a,
.desktop-menu > li:focus-within > a,
.desktop-menu > .current-menu-item > a,
.desktop-menu > .current-menu-ancestor > a {
  color: var(--ink);
}
.tool-button {
  border-color: rgba(18, 28, 32, 0.14);
  color: var(--ink);
  background: #f7f8f5;
}
.header-phone {
  border-right-color: rgba(18, 28, 32, 0.12);
}
.header-phone small {
  font-size: 10px;
}
.header-phone strong {
  color: var(--ink);
  font-size: 13px;
}
.search-panel {
  background: rgba(249, 250, 247, 0.96);
  color: var(--ink);
}
.search-panel__top {
  color: var(--ink);
}
.search-panel__top p {
  font-size: 16px;
}
.search-panel__close {
  border-color: rgba(18, 28, 32, 0.16);
  color: var(--ink);
}
.search-form input {
  color: var(--ink);
}
.search-form input::placeholder {
  color: #8b9597;
}
.search-hints span {
  border-color: rgba(18, 28, 32, 0.12);
  color: #687377;
  font-size: 11px;
}
.drawer-overlay {
  background: rgba(20, 27, 30, 0.44);
}
.mobile-drawer {
  background: #fff;
  color: var(--ink);
  box-shadow: 25px 0 70px rgba(20, 27, 30, 0.2);
}
.drawer__head {
  border-bottom-color: var(--line);
}
.drawer__close {
  border-color: var(--line);
  color: var(--ink);
}
.drawer__search {
  border-color: var(--line);
}
.drawer__search input {
  color: var(--ink);
  background: #f3f5f2;
}
.mobile-menu > li {
  border-bottom-color: var(--line);
}
.mobile-menu > li > a {
  min-height: 60px;
  color: #334046;
  font-size: 15px;
  font-weight: 700;
}
.mobile-menu .submenu-toggle {
  height: 60px;
  color: var(--orange);
}
.mobile-menu .sub-menu {
  background: #171c1e;
}
.mobile-menu .sub-menu a {
  color: #ffffff;
}
.drawer__contact small {
  font-size: 11px;
}
.footer {
  background: #eef1ed;
  color: #59666b;
  border-top: 1px solid var(--line);
}
.logo--footer {
  color: var(--ink);
}
.footer-about > p {
  font-size: 14px;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  border-color: rgba(18, 28, 32, 0.13);
  font-size: 11px;
}
.footer h2 {
  color: var(--ink);
  font-size: 17px;
}
.footer li {
  margin-bottom: 10px;
}
.footer li a {
  color: #445156;
  font-size: 14px;
}
.footer li a:hover {
  color: var(--orange);
}
.footer-contact small {
  color: #7c878a;
  font-size: 11px;
}
.footer-contact p,
.footer-contact a {
  color: #445156;
  font-size: 13px;
}
.footer__bottom {
  border-top-color: rgba(18, 28, 32, 0.12);
  font-size: 12px;
}
.back-top {
  position: fixed;
  z-index: 150;
  left: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 50%;
  color: var(--black);
  background: var(--acid);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.8s;
}
.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.single-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.single-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pblog-reveal {
  opacity: 1;
  transform: none;
}

.pukasaze-blog.is-ready .pblog-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.pukasaze-blog.is-ready .pblog-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .desktop-menu {
    gap: 18px;
  }
  .header-phone {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1.25fr repeat(2, 1fr);
  }
  .footer__grid > div:last-child {
    grid-column: 2/4;
  }
}
@media (max-width: 850px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }
  .header__inner {
    min-height: 70px;
  }
  .header__tools {
    margin-right: auto;
  }
  .menu-button {
    display: grid;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid > div:last-child {
    grid-column: auto;
  }
}
@media (max-width: 600px) {
  :root {
    --container-gutter: 24px;
  }
  .utility__inner {
    justify-content: center;
  }
  .utility__links {
    display: none;
  }
  .logo__mark {
    width: 40px;
    height: 40px;
  }
  .logo__text strong {
    font-size: 15px;
  }
  .logo__text small {
    font-size: 7px;
  }
  .tool-button {
    width: 40px;
    height: 40px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .logo__text strong {
    font-size: 17px;
  }
  .logo__text small {
    font-size: 9px;
  }
  .footer h2 {
    font-size: 18px;
  }
  .footer li a {
    font-size: 15px;
  }
  .footer-about > p {
    font-size: 14px;
  }
  .footer-contact p,
  .footer-contact a {
    font-size: 14px;
  }
  .footer__bottom {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
.pblog-reveal,
.single-reveal {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}





.pukasaze-more-link {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 11px;
  align-items: center;
  min-height: 46px;
  padding: 5px 15px 5px 6px;
  border: 1px solid rgb(23 33 39 / 10%);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgb(23 33 39 / 6%);
  color: #172127;
  font-size: 0.78rem;
  font-weight: 850;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.pukasaze-more-link span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #d85b32;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  transition:
    background-color 200ms ease,
    transform 200ms ease;
}

.pukasaze-more-link:hover {
  border-color: rgb(216 91 50 / 36%);
  box-shadow: 0 12px 30px rgb(23 33 39 / 10%);
  transform: translateY(-2px);
}

.pukasaze-more-link:hover span {
  background: #172127;
  transform: translateX(-3px);
}

/* ==========================================================
   Shared article card
   Used on the blog page and the front page
   ========================================================== */

.pblog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pblog-card {
  --pb-card: #fff;
  --pb-ink: #172127;
  --pb-muted: #677278;
  --pb-accent: #d85b32;
  --pb-line: rgb(23 33 39 / 10%);
  --pb-shadow: 0 22px 60px rgb(30 36 39 / 9%);

  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--pb-line);
  border-radius: 22px;
  background: var(--pb-card);
  box-shadow: 0 10px 35px rgb(31 38 42 / 4%);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.pblog-card:hover {
  border-color: rgb(216 91 50 / 24%);
  box-shadow: var(--pb-shadow);
  transform: translateY(-5px);
}

.pblog-card[hidden] {
  display: none;
}

.pblog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d9ddd9;
}

.pblog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.pblog-card:hover .pblog-card__media img {
  transform: scale(1.045);
}

.pblog-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background:
    linear-gradient(
      135deg,
      #e8e4de,
      #d3d8d5
    );
}

.pblog-card__category {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgb(23 33 39 / 84%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.5;
  backdrop-filter: blur(8px);
}

.pblog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.pblog-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0 0 13px;
  padding: 0;
  color: #899196;
  font-size: 0.7rem;
  list-style: none;
}

.pblog-meta li + li {
  position: relative;
}

.pblog-meta li + li::before {
  position: absolute;
  top: 50%;
  right: -11px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--pb-accent);
  content: "";
  transform: translateY(-50%);
}

.pblog-card h3 {
  margin: 0;
  color: var(--pb-ink);
  font-size: 1.06rem;
  font-weight: 850;
  line-height: 1.75;
}

.pblog-card h3 a {
  color: inherit;
}

.pblog-card h3 a:hover {
  color: var(--pb-accent);
}

.pblog-card__excerpt {
  display: -webkit-box;
  margin: 12px 0 22px;
  overflow: hidden;
  color: var(--pb-muted);
  font-size: 0.8rem;
  line-height: 1.9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.pblog-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  color: var(--pb-accent);
  font-size: 0.76rem;
  font-weight: 850;
}

.pblog-card__link span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.pblog-card:hover .pblog-card__link span {
  transform: translateX(-4px);
}

@media (max-width: 860px) {
  .pblog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .pblog-card__body {
    padding: 19px;
  }

  .pblog-card__placeholder {
    min-height: 190px;
  }
}