/* ============================================================
   Nexon Public Guides
   /guides
   /guides/category/{slug}
   /guides/{slug}
   ============================================================ */

.guides-page,
.guide-show-page {
  position: relative;
  display: block;
  overflow: hidden;
}

/* HERO */

.guides-hero,
.guide-show-hero {
  position: relative;
  padding: 34px 0 18px;
}

.guides-hero__shell,
.guide-show-hero__shell {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 46px;
  border-radius: 34px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.26), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.060), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.90);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.050);
}

.guides-hero__grid,
.guide-show-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(147, 197, 253, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 197, 253, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}

.guides-hero__orb,
.guide-show-hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.42;
  pointer-events: none;
}

.guides-hero__orb--one,
.guide-show-hero__orb--one {
  top: -90px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.42);
}

.guides-hero__orb--two,
.guide-show-hero__orb--two {
  left: -70px;
  bottom: -70px;
  width: 270px;
  height: 270px;
  background: rgba(34, 197, 94, 0.30);
}

.guides-hero__content,
.guide-show-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
}

.guides-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(255, 255, 255, 0.055);
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guides-hero__badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.78);
}

.guides-hero__title,
.guide-show-hero__title {
  margin: 26px 0 0;
  color: #ffffff;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 950;
  line-height: 0.93;
  letter-spacing: -0.08em;
}

.guides-hero__title span {
  display: block;
  margin-top: 8px;
  background: linear-gradient(90deg, #ffffff 0%, #86efac 34%, #60a5fa 72%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.guides-hero__text,
.guide-show-hero__text {
  max-width: 840px;
  margin: 20px 0 0;
  color: rgba(219, 234, 254, 0.76);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 750;
}

.guides-hero__subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 750;
}

.guides-hero__subnav a {
  color: #93c5fd;
  text-decoration: none;
}

.guides-hero__subnav a:hover {
  color: #bbf7d0;
  text-decoration: underline;
}

.guides-hero__subnav-dot {
  color: rgba(148, 163, 184, 0.55);
  user-select: none;
}

.guides-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  max-width: 960px;
  margin-top: 26px;
}

.guides-stat {
  min-height: 92px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(147, 197, 253, 0.13);
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 165, 250, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.045);
}

.guides-stat__label {
  display: block;
  color: rgba(203, 213, 225, 0.68);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.guides-stat__value {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.045em;
  word-break: break-word;
}

.guides-stat__value--sm {
  font-size: clamp(17px, 2.4vw, 22px);
  letter-spacing: -0.03em;
}

.guides-hero__actions,
.guide-show-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* SECTIONS */

.guides-section,
.guide-show-section {
  padding: 18px 0 48px;
}

.guides-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.guides-section-head__kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(134, 239, 172, 0.88);
}

.guides-section-head__title {
  margin: 0;
}

.guides-section-head__lead {
  margin: 10px 0 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
  color: rgba(203, 213, 225, 0.72);
}

.guides-section-head__meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(219, 234, 254, 0.72);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

/* CATEGORY CARDS */

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

.guide-category-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.82);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  text-decoration: none;
  color: inherit;
  outline: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.guide-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 197, 253, 0.28);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(34, 197, 94, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.guide-category-card:focus-visible {
  border-color: rgba(134, 239, 172, 0.45);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.24),
    0 0 0 3px rgba(34, 197, 94, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.guide-category-card:hover .guide-category-card__title {
  color: #dcfce7;
}

.guide-category-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  border: 1px solid rgba(34, 197, 94, 0.20);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.20), rgba(37, 99, 235, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: #bbf7d0;
  font-size: 24px;
  font-weight: 950;
}

.guide-category-card__label {
  color: #86efac;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-category-card__title {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.guide-category-card__text {
  margin: 12px 0 0;
  color: rgba(219, 234, 254, 0.72);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

/* FEATURED */

.guide-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 32px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.82);
  box-shadow:
    0 24px 75px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  text-decoration: none;
  color: inherit;
  outline: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.guide-featured-card:hover {
  transform: translateY(-2px);
  border-color: rgba(134, 239, 172, 0.28);
  box-shadow:
    0 30px 88px rgba(0, 0, 0, 0.36),
    0 0 40px rgba(34, 197, 94, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.guide-featured-card:focus-visible {
  border-color: rgba(134, 239, 172, 0.45);
  box-shadow:
    0 24px 75px rgba(0, 0, 0, 0.30),
    0 0 0 3px rgba(34, 197, 94, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.guide-featured-card__media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(34, 197, 94, 0.18), transparent 44%),
    rgba(15, 23, 42, 0.92);
}

.guide-featured-card__media img,
.guide-card__media img,
.guide-show-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-featured-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.guide-featured-card__meta,
.guide-show-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(203, 213, 225, 0.68);
  font-size: 13px;
  font-weight: 850;
}

.guide-featured-card__meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(219, 234, 254, 0.78);
  font-size: 12px;
  font-weight: 850;
}

.guide-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.14);
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-featured-card__title {
  margin: 18px 0 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 950;
  color: #ffffff;
}

.guide-featured-card:hover .guide-featured-card__title {
  color: #ecfdf5;
}

.guide-featured-card__text {
  margin: 18px 0 24px;
  color: rgba(219, 234, 254, 0.76);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 700;
}

/* GUIDE GRID */

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

.guides-grid--category {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(147, 197, 253, 0.13);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.10), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.78);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  text-decoration: none;
  color: inherit;
  outline: none;
  display: block;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 197, 253, 0.28);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(34, 197, 94, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.guide-card:focus-visible {
  border-color: rgba(134, 239, 172, 0.38);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.24),
    0 0 0 3px rgba(34, 197, 94, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.guide-card:hover .guide-card__title {
  color: #ecfdf5;
}

.guide-card__media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(34, 197, 94, 0.18), transparent 42%),
    rgba(15, 23, 42, 0.88);
}

.guide-card__tag {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 28px);
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: none;
  backdrop-filter: blur(14px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guide-card__body {
  padding: 22px;
}

.guide-card__date {
  color: rgba(203, 213, 225, 0.62);
  font-size: 13px;
  font-weight: 850;
}

.guide-card__title {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.guide-card__text {
  margin: 14px 0 0;
  color: rgba(219, 234, 254, 0.72);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

/* PLACEHOLDERS */

.guide-featured-card__placeholder,
.guide-card__placeholder,
.guide-show-cover--empty {
  display: grid;
  place-items: center;
  gap: 10px;
  height: 100%;
  min-height: inherit;
  color: rgba(219, 234, 254, 0.72);
  text-align: center;
}

.guide-featured-card__placeholder span,
.guide-card__placeholder span,
.guide-show-cover--empty span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 28px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: #86efac;
  font-size: 34px;
  font-weight: 950;
}

.guide-featured-card__placeholder strong,
.guide-show-cover--empty strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

/* LINKS */

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(37, 99, 235, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: #dcfce7;
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

a.guide-featured-card:hover .guide-link,
a.guide-category-card:hover .guide-link,
a.guide-card:hover .guide-link,
.guide-link:hover {
  transform: translateY(-1px);
  border-color: rgba(134, 239, 172, 0.42);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.24), rgba(37, 99, 235, 0.12)),
    rgba(255, 255, 255, 0.06);
}

.guide-link--small {
  margin-top: 18px;
}

/* CATEGORY LAYOUT */

.guides-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.32fr) minmax(0, 0.68fr);
  gap: 22px;
  align-items: start;
}

.guides-sidebar {
  position: sticky;
  top: 24px;
}

.guides-sidebar-card {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.82);
  box-shadow:
    0 20px 65px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.guides-sidebar-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  background: rgba(34, 197, 94, 0.10);
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guides-sidebar-card__badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.70);
}

.guides-sidebar-card__title {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.guides-side-nav {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.guides-side-nav a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(147, 197, 253, 0.10);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(219, 234, 254, 0.78);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.guides-side-nav a:hover,
.guides-side-nav a.is-active {
  transform: translateY(-1px);
  border-color: rgba(34, 197, 94, 0.30);
  background: rgba(34, 197, 94, 0.10);
  color: #ffffff;
}

.guides-side-nav a:focus-visible {
  outline: none;
  border-color: rgba(134, 239, 172, 0.45);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.guides-side-nav a span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 38px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.20), rgba(37, 99, 235, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: #bbf7d0;
  font-size: 13px;
  font-weight: 950;
}

/* SHOW PAGE */

.guide-show-hero__title {
  max-width: 1050px;
  font-size: clamp(42px, 5vw, 72px);
}

.guide-show-layout {
  display: grid;
  gap: 22px;
}

.guide-show-cover {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  max-height: 620px;
  border-radius: 32px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  background:
    radial-gradient(circle at 50% 20%, rgba(34, 197, 94, 0.18), transparent 42%),
    rgba(15, 23, 42, 0.88);
  box-shadow:
    0 24px 75px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.guide-show-cover img {
  min-height: 420px;
}

.guide-show-card {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.82);
  box-shadow:
    0 20px 65px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.guide-show-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.guide-show-info {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(147, 197, 253, 0.10);
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 165, 250, 0.08), transparent 50%),
    rgba(255, 255, 255, 0.035);
}

.guide-show-info span {
  display: block;
  color: rgba(203, 213, 225, 0.62);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-show-info strong {
  display: block;
  margin-top: 7px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  word-break: break-word;
}

.guide-show-article-card {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(147, 197, 253, 0.10);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.030);
}

.guide-show-article {
  color: rgba(226, 232, 240, 0.92);
  font-size: 18px;
  line-height: 2;
  font-weight: 650;
  word-break: break-word;
}

.guide-show-article p {
  margin: 0 0 20px;
}

.guide-show-article p:last-child {
  margin-bottom: 0;
}

.guide-show-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(147, 197, 253, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.guide-show-bottom__label {
  display: block;
  margin-bottom: 6px;
  color: rgba(203, 213, 225, 0.64);
  font-size: 13px;
  font-weight: 850;
}

.guide-show-bottom__value {
  color: #ffffff;
  font-size: 19px;
  font-weight: 950;
}

/* EMPTY */

.guides-empty {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  min-height: 300px;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.82);
}

.guides-empty__icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  color: #86efac;
  font-size: 30px;
  font-weight: 950;
}

.guides-empty__title {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.guides-empty__text {
  max-width: 620px;
  margin: 0;
  color: rgba(219, 234, 254, 0.70);
  line-height: 1.7;
}

/* RESPONSIVE */

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

  .guide-featured-card {
    grid-template-columns: 1fr;
  }

  .guide-featured-card__media {
    min-height: 330px;
  }

  .guides-layout {
    grid-template-columns: 1fr;
  }

  .guides-sidebar {
    position: static;
  }

  .guide-show-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .guides-hero,
  .guide-show-hero {
    padding-top: 20px;
  }

  .guides-hero__shell,
  .guide-show-hero__shell,
  .guide-featured-card__body,
  .guide-show-card,
  .guide-show-article-card {
    padding: 22px;
    border-radius: 26px;
  }

  .guides-hero__stats,
  .guides-categories-grid,
  .guides-grid,
  .guides-grid--category,
  .guide-show-meta-grid {
    grid-template-columns: 1fr;
  }

  .guides-hero__title,
  .guide-show-hero__title {
    font-size: 42px;
    letter-spacing: -0.06em;
  }

  .guides-hero__text,
  .guide-show-hero__text {
    font-size: 16px;
  }

  .guides-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .guides-section-head__meta {
    white-space: normal;
  }

  .guide-category-card {
    grid-template-columns: 1fr;
  }

  .guide-card__media {
    height: 190px;
  }

  .guide-show-cover,
  .guide-show-cover img,
  .guide-show-cover--empty {
    min-height: 240px;
    border-radius: 24px;
  }

  .guide-show-article {
    font-size: 16px;
    line-height: 1.9;
  }

  .guides-hero__actions,
  .guides-hero__actions .btn,
  .guide-show-hero__actions,
  .guide-show-hero__actions .btn,
  .guide-show-bottom,
  .guide-show-bottom .btn {
    width: 100%;
  }
}
