@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  line-height: 1.6;
  color: #111827;
  overflow-x: hidden;
  background: radial-gradient(circle at 18% 32%, rgba(99, 102, 241, 0.18), transparent 60%), radial-gradient(circle at 82% 68%, rgba(14, 165, 233, 0.2), transparent 65%), radial-gradient(circle at 70% 25%, rgba(79, 70, 229, 0.15), transparent 60%), linear-gradient(135deg, #ffffff 0%, #f0f3f7 100%);
  background-attachment: fixed;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.35;
}

a {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1d4ed8;
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.u-visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.u-container, .footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 2rem;
}

.u-container--wide {
  max-width: 1400px;
}

@media (max-width: 768px) {
  .u-container, .footer__container {
    padding-inline: 1rem;
  }
}
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-block-end: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 2rem;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  height: 80px;
  padding-inline: 1.1rem;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__logo {
  inline-size: 54px;
  block-size: 54px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(135deg, #0f1115 0%, #1f2330 70%);
}
.header__logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 60%);
  mix-blend-mode: overlay;
}
.header__logo:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.4);
}
.header__logo img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
}
.header__name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}
.header__name {
  color: rgb(17, 24, 39) !important;
  text-decoration: none !important;
  transition: none;
}
.header__name:hover, .header__name:focus {
  color: rgb(17, 24, 39) !important;
  text-decoration: none !important;
}
.header__nav {
  display: flex;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  gap: 0.75rem;
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.45s cubic-bezier(0.16, 0.8, 0.24, 1);
  z-index: 999;
}
.header__nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header__nav ul,
.header__nav .header__menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav li {
  margin: 0;
  padding: 0;
}
.header__nav a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
  font-size: 0.95rem;
  display: block;
  padding: 0.2em 0.1em;
}
.header__nav a::after {
  content: "";
  position: absolute;
  inset-block-end: -4px;
  inset-inline-start: 0;
  inline-size: 0;
  block-size: 2px;
  background: #6366f1;
  transition: inline-size 0.3s ease;
}
.header__nav a:hover {
  color: #6366f1;
}
.header__nav a:hover::after {
  inline-size: 100%;
}
.header__toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  line-height: 0;
  position: relative;
  transition: background 0.3s;
}
.header__toggle:hover {
  background: #e5e7eb;
}
.header__toggle span,
.header__toggle span::before,
.header__toggle span::after {
  display: block;
  inline-size: 22px;
  block-size: 2px;
  background: #000;
  border-radius: 2px;
  position: relative;
  transition: 0.4s;
}
.header__toggle span::before,
.header__toggle span::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
}
.header__toggle span::before {
  inset-block-start: -6px;
}
.header__toggle span::after {
  inset-block-start: 6px;
}
.header__toggle.is-active span {
  background: transparent;
}
.header__toggle.is-active span::before {
  inset-block-start: 0;
  transform: rotate(45deg);
}
.header__toggle.is-active span::after {
  inset-block-start: 0;
  transform: rotate(-45deg);
}
@media (min-width: 769px) {
  .header__container {
    padding-inline: 2rem;
  }
  .header__toggle {
    display: none;
  }
  .header__nav {
    position: static;
    inset: auto;
    flex-direction: row;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    gap: 2rem;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .header__nav ul,
  .header__nav .header__menu {
    flex-direction: row;
    gap: 2rem;
  }
  .header__nav a {
    font-size: inherit;
  }
}

body {
  padding-top: 80px;
}

html {
  scroll-padding-top: 80px;
}

#menu-footer,
#menu-footer li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
  background: #111827;
  color: #fff;
  padding: 3rem 2rem 2rem;
  text-align: center;
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__section h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer__section p,
.footer__section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__section a:hover {
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__nav {
  margin: 2rem 0 0 0;
}
.footer__nav ul,
.footer__nav .footer__menu {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.footer__nav .footer__menu,
.footer__nav .footer__menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.footer__nav li {
  margin: 0;
  padding: 0;
}
.footer__nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
  font-size: 1rem;
  display: block;
  padding: 0.2em 0.1em;
}
.footer__nav a::after {
  content: "";
  position: absolute;
  inset-block-end: -4px;
  inset-inline-start: 0;
  inline-size: 0;
  block-size: 2px;
  background: #6366f1;
  transition: inline-size 0.3s ease;
}
.footer__nav a:hover {
  color: #fff;
}
.footer__nav a:hover::after {
  inline-size: 100%;
}

@media (max-width: 768px) {
  .footer {
    margin-top: 0;
  }
}
.filters {
  position: sticky;
  top: 80px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.85rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .filters {
    gap: 0.5rem;
  }
}

body.admin-bar .filters {
  top: 112px;
}

.filter-btn {
  padding: 0.7rem 1.3rem;
  border-radius: 16px;
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.06);
}

.filter-btn.active,
.filter-btn:active,
.filter-btn.active:focus {
  background: linear-gradient(90deg, #6366f1 0%, #4f46e5 55%, #0ea5e9 100%);
  color: #fff;
  border-color: #6366f1;
  box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.18);
}

.filter-btn:hover:not(.active) {
  background: #e0e7ff;
  color: #3730a3;
}

.filters__btn {
  --btn-bg: rgba(0, 0, 0, 0.04);
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--btn-bg);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: 0.35s;
  position: relative;
  text-decoration: none;
}
.filters__btn:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .filters__btn {
    padding: 0.25rem 0.65rem;
    font-size: 0.72rem;
    border-radius: 26px;
    letter-spacing: 0.4px;
  }
}

.filters__btn--active,
.filters__btn:hover {
  color: #111827;
  background: linear-gradient(135deg, #ffffff, #f3f4f6);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.15);
  outline: 2px solid rgba(99, 102, 241, 0.5);
}

.blog-hero {
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  background: #0d1117;
  background: radial-gradient(circle at 20% 25%, rgba(99, 102, 241, 0.18), rgba(13, 17, 23, 0.85) 55%), radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.12), rgba(13, 17, 23, 0.9) 60%), linear-gradient(125deg, #111827 0%, #0d1117 55%, #111827 100%);
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 1;
}
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 14px);
  mix-blend-mode: overlay;
  opacity: 0.35;
}
.blog-hero__inner {
  position: relative;
  z-index: 3;
  max-inline-size: 880px;
  padding: 2.7rem 2rem 3.3rem;
  animation: fadeInUp 1s ease-out;
}
.blog-hero__pill {
  display: inline-block;
  background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
  color: #fff;
  padding: 0.45rem 0.85rem;
  border-radius: 40px;
  font-size: 0.6rem;
  letter-spacing: 0.6px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.blog-hero__title {
  font-size: clamp(2.55rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 1.15rem;
  color: #fff;
}
.blog-hero__desc {
  font-size: 1.05rem;
  color: #d1d5db;
  max-inline-size: 640px;
  margin: 0 auto 0;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .blog-hero {
    padding-top: 24px;
    min-height: 38vh;
  }
  .blog-hero__inner {
    padding: 1.2rem 1.2rem;
  }
}

.posts-section {
  padding: 3.5rem 0 3.25rem;
  background: #fff;
}

.posts-container {
  max-width: 1300px;
  margin: 0 auto;
}

.posts-heading {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
  background: linear-gradient(90deg, #6366f1 0%, #4f46e5 55%, #0ea5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.post-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 18px -6px rgba(0, 0, 0, 0.08);
  transition: 0.55s cubic-bezier(0.16, 0.8, 0.24, 1);
  opacity: 0;
  transform: translateY(24px);
}
.post-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 102, 255, 0.06), rgba(0, 0, 0, 0.05));
  opacity: 0;
  transition: opacity 0.6s ease;
}
.post-card:hover::before {
  opacity: 1;
}
.post-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.22);
  border-color: rgba(0, 102, 255, 0.22);
}

.post-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}
.post-card-link:hover {
  text-decoration: none;
}
.post-card-link:focus {
  text-decoration: none;
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}
.post-card-link * {
  pointer-events: none;
}
.post-card-link {
  pointer-events: auto;
}

.post-media {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #111;
}
.post-media img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}

.post-card:hover .post-media img {
  transform: scale(1.08);
}

.post-content {
  padding: 1.6rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.post-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #4b5563;
}

.cat-pill {
  background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 40px;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
}

.post-title {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  transition: color 0.35s;
  margin: 0;
}

.post-card:hover .post-title {
  color: #6366f1;
}

.post-excerpt {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.55;
}

.read-more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 0.3rem;
  position: relative;
  transition: color 0.35s;
}
.read-more::after {
  content: "→";
  transition: transform 0.3s;
}

.post-card:hover .read-more {
  color: #6366f1;
}

.post-card:hover .read-more::after {
  transform: translateX(4px);
}

@media (min-width: 769px) {
  .posts-section {
    padding: 4.5rem 2rem 4rem;
  }
  .posts-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.2rem;
  }
  .post-card {
    border-radius: 22px;
  }
}
.pagination {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin: 3.2rem 0 1rem;
  flex-wrap: wrap;
}
.pagination__link {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: #4b5563;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.35s;
}
.pagination__link:hover {
  color: #4b5563;
  text-decoration: none;
  border-color: rgba(99, 102, 241, 0.5);
}
.pagination__link--active {
  background: linear-gradient(135deg, #6366f1, #4f46e5, #0ea5e9);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, 0.35);
}
.pagination__link--active:hover {
  color: #fff;
  text-decoration: none;
}

.cta {
  padding: 4.8rem 0;
  background: #f5f7fa;
  text-align: center;
}

.cta__inner {
  max-width: 860px;
  margin: 0 auto;
}

.cta__title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 1rem;
  background: linear-gradient(90deg, #6366f1 0%, #4f46e5 55%, #0ea5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta__desc {
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto 2.2rem;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(115deg, #6366f1 0%, #5b5ff0 22%, #5458ee 44%, #4e53eb 66%, #3759f0 82%, #0ea5e9 100%);
  color: #fff !important;
  padding: 1.05rem 2.4rem;
  border-radius: 56px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.55s cubic-bezier(0.16, 0.8, 0.24, 1);
  box-shadow: 0 8px 28px -6px rgba(0, 0, 0, 0.55);
}

.cta__button:hover {
  transform: translateY(-4px);
  text-decoration: none;
}

@media (max-width: 768px) {
  .cta {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
  .cta__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 768px) {
  .cta {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
  .cta__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

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