.post-page,
.category-page {
  padding: 32px 0 56px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: #6f6a62;
}
.breadcrumbs a {
  color: #161616;
  font-weight: 600;
  transition: all 0.25s ease;
}
.breadcrumbs a:hover {
  color: #d33a2c;
}
.breadcrumbs span {
  color: #6f6a62;
}

.post-page .breadcrumbs {
  margin-bottom: 20px;
}

.post-page--legal {
  padding-top: 40px;
}
.post-page--legal .breadcrumbs {
  margin-bottom: 24px;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.post-sidebar {
  position: sticky;
  top: 120px;
}

.post-article {
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #dfd7ca;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.post-article__header {
  margin-bottom: 24px;
}
.post-article__header h1 {
  font-family: "Cairo", "Poppins", sans-serif;
  color: #161616;
  font-size: 2.5rem;
  line-height: 1.05;
  margin: 16px 0;
  letter-spacing: -0.025em;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #6f6a62;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.post-meta a {
  color: #d33a2c;
  font-weight: 700;
}
.post-meta a:hover {
  text-decoration: underline;
}

.post-summary {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #6f6a62;
  margin: 0;
}

.post-category {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--category-color) 16%, white);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--category-color) 12%, white);
  color: var(--category-color);
}

.post-featured-image {
  margin: 0 0 28px;
}
.post-featured-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.post-article--legal {
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.post-article__header--legal {
  padding: 34px 36px 26px;
  margin-bottom: 0;
  background: radial-gradient(circle at top left, rgba(36, 83, 255, 0.1), transparent 38%), linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border-bottom: 1px solid rgba(12, 24, 44, 0.08);
}
.post-article__header--legal h1 {
  margin: 12px 0 0;
  max-width: 720px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: #101d39;
}

.post-article__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(36, 83, 255, 0.08);
  color: #2453ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-article__legal-intro {
  margin: 16px 0 0;
  max-width: 660px;
  color: #5d6982;
  font-size: 1rem;
  line-height: 1.7;
}

.post-video-embed {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 12px;
  background: #050505;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}
.post-video-embed iframe,
.post-video-embed video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 0;
  border: 0;
}
.post-video-embed video {
  background: #050505;
}

.post-gallery {
  margin: 0 0 28px;
}

.post-gallery__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.post-gallery__header h2 {
  margin: 0;
  font-family: "Cairo", "Poppins", sans-serif;
  font-size: 1.3rem;
  line-height: 1.05;
  color: #161616;
}

.post-gallery__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #31517e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.post-gallery__item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #eff2f6;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}
.post-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.post-gallery__item:hover img, .post-gallery__item:focus-visible img {
  transform: scale(1.03);
}

.post-gallery__zoom {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(12, 24, 44, 0.74);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.post-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.post-gallery-lightbox[hidden] {
  display: none !important;
}

.post-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 19, 0.78);
  backdrop-filter: blur(4px);
}

.post-gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(1080px, 100%);
}

.post-gallery-lightbox__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #09111f;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}
.post-gallery-lightbox__figure img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  background: #09111f;
}
.post-gallery-lightbox__figure figcaption {
  padding: 14px 18px 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.6;
  background: linear-gradient(180deg, rgba(9, 17, 31, 0.3), rgba(9, 17, 31, 0.95));
}

.post-gallery-lightbox__close,
.post-gallery-lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.post-gallery-lightbox__close:hover, .post-gallery-lightbox__close:focus-visible,
.post-gallery-lightbox__nav:hover,
.post-gallery-lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.post-gallery-lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
}

body.has-gallery-lightbox {
  overflow: hidden;
}

.post-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f5f7fa 100%);
  border: 1px solid #dfd7ca;
}
.post-share span {
  font-weight: 700;
  color: #161616;
  margin-right: 2px;
}
.post-share a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfd7ca;
  color: #161616;
  font-weight: 700;
  transition: all 0.25s ease;
}
.post-share a:hover {
  border-color: #d33a2c;
  color: #d33a2c;
  transform: translateY(-1px);
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #373737;
  overflow-wrap: anywhere;
}
.post-content p {
  margin: 0 0 1.2em;
}
.post-content h2,
.post-content h3,
.post-content h4 {
  margin: 1.6em 0 0.7em;
  color: #161616;
}
.post-content ul,
.post-content ol {
  padding-left: 1.4rem;
  margin: 0 0 1.2em;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 16px 0;
}
.post-content a {
  color: #d33a2c;
  font-weight: 600;
}
.post-content iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 12px;
  margin: 18px 0;
}
.post-content blockquote {
  border-left: 4px solid #d33a2c;
  background: #fafafa;
  padding: 14px 18px;
  margin: 18px 0;
}
.post-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  margin: 18px 0;
}
.post-content .content-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.post-content .content-gallery img {
  margin: 0;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.author-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  padding: 18px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #dfd7ca;
}

.author-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-card__placeholder {
  font-size: 0.875rem;
  font-weight: 800;
  color: #6f6a62;
}

.author-card__info h3 {
  margin: 0 0 8px;
}
.author-card__info h3 a {
  color: #161616;
}
.author-card__info p {
  margin: 0;
  color: #6f6a62;
  line-height: 1.7;
}

.author-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.author-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #dfd7ca;
  color: #161616;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.25s ease;
}
.author-socials a:hover {
  border-color: #d33a2c;
  color: #d33a2c;
  background: rgba(217, 43, 43, 0.04);
}

.author-profile {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dfd7ca;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.author-profile__avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(242, 178, 51, 0.18), rgba(217, 43, 43, 0.14));
  color: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
}
.author-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-profile__content p {
  margin: 0;
  color: #6f6a62;
  line-height: 1.8;
}

.related-posts {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #dfd7ca;
}

.post-tags {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #dfd7ca;
}
.post-tags h3 {
  margin-bottom: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #dfd7ca;
  font-size: 0.875rem;
  font-weight: 700;
  color: #161616;
  transition: all 0.25s ease;
}
.tag-pill:hover {
  border-color: #d33a2c;
  color: #d33a2c;
  background: rgba(217, 43, 43, 0.04);
}

.post-comments {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #dfd7ca;
}
.post-comments h3 {
  margin-bottom: 16px;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.comment-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #dfd7ca;
  background: #fafbfc;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.comment-card strong {
  display: block;
  margin-bottom: 6px;
  color: #161616;
}
.comment-card span {
  display: block;
  color: #6f6a62;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.comment-card p {
  margin: 0;
  line-height: 1.75;
}

.comments-empty {
  color: #6f6a62;
  margin-top: 12px;
}

.most-read-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.most-read-list li + li {
  margin-top: 12px;
}
.most-read-list a {
  color: #161616;
  font-weight: 600;
  line-height: 1.6;
}
.most-read-list a:hover {
  color: #d33a2c;
}

.category-header {
  margin-bottom: 24px;
}
.category-header h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 12px 0;
  letter-spacing: -0.02em;
}
.category-header p {
  color: #6f6a62;
  max-width: 720px;
  line-height: 1.7;
}

.category-page {
  padding: 24px 0 72px;
  background: #ffffff;
}
.category-page .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.category-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.category-page__main,
.category-page__sidebar {
  min-width: 0;
}

.category-page__hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(12, 24, 44, 0.12);
  border-bottom: 1px solid rgba(12, 24, 44, 0.1);
}
.category-page__hero h1 {
  margin: 0;
  color: #101d39;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.category-page__hero p {
  margin: 0;
  max-width: 760px;
  color: #4f5b73;
  font-size: 0.98rem;
  line-height: 1.72;
}

.category-page__list {
  display: flex;
  flex-direction: column;
}

.category-list-story {
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(12, 24, 44, 0.1);
}

.category-list-story__media {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #ece7df;
  aspect-ratio: 16/10;
  border-radius: 12px;
}
.category-list-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-list-story__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.category-list-story__content h2 {
  margin: 0;
  font-family: "Cairo", "Poppins", sans-serif;
  color: var(--story-category-color, #161616);
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.category-list-story__content h2 a {
  color: inherit;
}
.category-list-story__content p {
  margin: 0;
  color: #5b6780;
  font-size: 0.98rem;
  line-height: 1.7;
}

.category-list-story__date {
  color: #7a8599;
  font-size: 0.82rem;
  line-height: 1.3;
}

.category-sidebar-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.category-sidebar-card + .category-sidebar-card,
.category-sidebar-card + .category-sidebar-ad,
.category-sidebar-ad + .category-sidebar-card {
  margin-top: 30px;
}

.category-sidebar-card__heading {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(12, 24, 44, 0.12);
  color: #0c1830;
  font-size: 1.05rem;
  font-weight: 700;
}
.category-sidebar-card__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 104px;
  height: 3px;
  background: #0031FF;
}

.category-sidebar-list {
  display: flex;
  flex-direction: column;
}

.category-sidebar-list__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(12, 24, 44, 0.08);
}
.category-sidebar-list__item + .category-sidebar-list__item {
  margin-top: 18px;
}

.category-sidebar-list__media {
  display: block;
  overflow: hidden;
  background: #ece7df;
  aspect-ratio: 1;
}
.category-sidebar-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-sidebar-list__content a {
  color: var(--story-category-color, #111f3c);
  font-size: 0.98rem;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.category-sidebar-ad a {
  display: block;
}
.category-sidebar-ad img {
  width: 100%;
  height: auto;
  display: block;
}

.category-page .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.category-page .pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(12, 24, 44, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #4f5b73;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.22s ease;
}
.category-page .pagination a:hover {
  border-color: #000000;
  color: #ffffff;
  background: #000000;
}
.category-page .pagination .is-active {
  border-color: #101d39;
  background: #101d39;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(16, 29, 57, 0.18);
}

.post-content--legal {
  padding: 30px 36px 38px;
  color: #24324a;
  font-size: 1.02rem;
  line-height: 1.9;
}
.post-content--legal p + p {
  margin-top: 1.1em;
}
.post-content--legal h2,
.post-content--legal h3,
.post-content--legal h4 {
  color: #101d39;
}

.sidebar-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-card + .sidebar-card {
  margin-top: 30px;
}

.sidebar-section-heading {
  --section-accent: #0031FF;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 0;
  border-bottom: 1px solid #dfd7ca;
}
.sidebar-section-heading h2 {
  margin: 0;
  display: inline-block;
  color: #161616;
  font-size: 1rem;
  line-height: 1;
  font-family: "Cairo", "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
}
.sidebar-section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  border-bottom: 2px solid var(--section-accent);
}

.sidebar-most-read-list {
  display: flex;
  flex-direction: column;
}

.sidebar-most-read-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(12, 24, 44, 0.08);
}
.sidebar-most-read-item + .sidebar-most-read-item {
  margin-top: 18px;
}

.sidebar-most-read-item__media {
  display: block;
  overflow: hidden;
  background: #ece7df;
  aspect-ratio: 1;
  border-radius: 8px;
}
.sidebar-most-read-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar-most-read-item__content {
  min-width: 0;
}

.sidebar-most-read-item__title {
  display: block;
  color: var(--story-category-color, #111f3c);
  font-size: 0.98rem;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.sidebar-most-read-item__title:hover {
  opacity: 0.85;
}

.sidebar-card--ad {
  padding: 0;
  background: transparent;
}

.sidebar-ad {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
.sidebar-ad img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .post-layout {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    position: static;
  }
  .category-page__layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .post-article {
    padding: 24px;
  }
  .post-article--legal {
    padding: 0;
  }
  .post-article__header h1,
  .category-header h1 {
    font-size: 2rem;
  }
  .post-article__header--legal {
    padding: 28px 28px 22px;
  }
  .post-content--legal {
    padding: 24px 28px 30px;
  }
  .category-list-story {
    grid-template-columns: 1fr;
  }
  .category-list-story__media {
    max-width: none;
  }
  .category-page__hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .post-share {
    padding: 14px;
  }
  .breadcrumbs {
    font-size: 0.875rem;
  }
  .author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .author-card__avatar {
    margin: 0 auto;
  }
  .author-socials {
    justify-content: center;
  }
  .author-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .author-profile__avatar {
    margin: 0 auto;
  }
  .post-content iframe {
    min-height: 220px;
  }
  .post-content .content-gallery {
    grid-template-columns: 1fr;
  }
  .post-content .content-gallery img {
    height: auto;
  }
}
@media (max-width: 640px) {
  .post-article {
    padding: 18px 16px;
    border-radius: 18px;
  }
  .post-article--legal {
    padding: 0;
    border-radius: 0;
  }
  .post-article__header--legal {
    padding: 22px 18px 18px;
  }
  .post-article__header--legal h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }
  .post-article__legal-intro {
    font-size: 0.92rem;
    line-height: 1.6;
  }
  .post-content--legal {
    padding: 20px 18px 24px;
    font-size: 0.98rem;
    line-height: 1.8;
  }
  .post-article__header--columnist h1 {
    font-size: 1.5rem;
  }
  .post-share {
    gap: 8px;
    padding: 12px;
  }
  .post-share span {
    width: 100%;
    margin-right: 0;
  }
  .post-share a {
    justify-content: center;
    min-width: 38px;
    padding: 0;
  }
  .post-content {
    font-size: 1rem;
    line-height: 1.8;
  }
  .post-featured-image {
    margin-bottom: 20px;
  }
  .columnist-article-intro__author {
    align-items: flex-start;
  }
  .columnist-article-intro__author-avatar {
    width: 50px;
    height: 50px;
  }
}
.post-layout--columnist {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
}

.post-article--columnist {
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.post-article__header--columnist {
  margin-bottom: 28px;
  padding-top: 8px;
  border-top: 1px solid rgba(12, 24, 44, 0.12);
}

.columnist-article-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.columnist-article-intro__identity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.columnist-article-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  background: rgba(0, 49, 255, 0.08);
  color: #0031FF;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: none;
}

.post-article__header--columnist h1 {
  margin: 0;
  max-width: 980px;
  color: #101d39;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.columnist-article-intro__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(12, 24, 44, 0.1);
}

.columnist-article-intro__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.columnist-article-intro__author-avatar {
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: #e8e1d8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.columnist-article-intro__author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.columnist-article-intro__author-avatar span {
  color: #10203d;
  font-size: 1.45rem;
  font-weight: 700;
}

.columnist-article-intro__author-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.columnist-article-intro__author-copy strong {
  color: #0f1d38;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 700;
}

.columnist-article-intro__author-copy strong a {
  color: inherit;
}

.columnist-article-intro__author-copy span {
  color: #637089;
  font-size: 0.88rem;
  line-height: 1.55;
}

.columnist-article-intro__details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #68748c;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-summary--columnist {
  margin: 0;
  max-width: 880px;
  color: #4f5b73;
  font-size: 1.18rem;
  line-height: 1.72;
}

.post-featured-image--columnist {
  margin: 0 0 32px;
}

.post-featured-image--columnist img {
  border-radius: 0;
  box-shadow: none;
}

.post-share--columnist {
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(12, 24, 44, 0.1);
  border-radius: 0;
  background: transparent;
}

.columnist-opening-quote {
  margin: 28px 0 34px;
  padding: 28px 34px;
  border-top: 1px solid rgba(12, 24, 44, 0.12);
  border-bottom: 1px solid rgba(12, 24, 44, 0.12);
  background: linear-gradient(180deg, #fcfaf5 0%, #f6f1e7 100%);
}
.columnist-opening-quote p {
  margin: 0;
  color: #0f1d38;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.post-content--columnist {
  width: 100%;
  color: #18253d;
  font-size: 1.14rem;
  line-height: 1.95;
}

.post-content--columnist p {
  margin-bottom: 1.28em;
}

.post-content--columnist h2,
.post-content--columnist h3,
.post-content--columnist h4 {
  color: #0f1d38;
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.post-content--columnist blockquote {
  padding: 22px 26px;
  border-left: 3px solid #0f1d38;
  background: linear-gradient(180deg, #faf8f3 0%, #f2ede4 100%);
  color: #16233e;
  font-size: 1.1rem;
}

.columnist-signature {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(12, 24, 44, 0.12);
}

.columnist-signature__avatar {
  width: 76px;
  height: 76px;
  overflow: hidden;
  background: #e8e1d8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.columnist-signature__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.columnist-signature__avatar span {
  color: #10203d;
  font-size: 1.7rem;
  font-weight: 700;
}

.columnist-signature__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.columnist-signature__content strong {
  color: #0f1d38;
  font-size: 1.12rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.columnist-signature__content .columnist-signature__column-title {
  color: #0031FF;
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: none;
}
.columnist-signature__content p {
  margin: 0;
  color: #647089;
  font-size: 0.95rem;
  line-height: 1.65;
}
.columnist-signature__content a {
  color: #0031FF;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  transition: color 0.2s ease;
}

.columnist-signature__content a:hover,
.columnist-article-intro__author-copy strong a:hover {
  color: #001fb3;
}

.post-sidebar--columnist {
  position: sticky;
  top: 140px;
}

.columnist-more-posts {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(12, 24, 44, 0.12);
}

.columnist-more-posts__heading {
  margin-bottom: 18px;
}

.columnist-more-posts__heading h2 {
  margin: 0;
}

.columnist-more-posts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.columnist-more-posts__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.columnist-more-posts__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #ece6dd;
}

.columnist-more-posts__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.columnist-more-posts__card h3 {
  margin: 0;
  color: #12213e;
  font-size: 1.03rem;
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.015em;
}

@media (max-width: 1100px) {
  .post-layout--columnist,
  .columnist-more-posts__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .post-article__header--columnist h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }
  .columnist-article-intro__meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .columnist-opening-quote {
    padding: 22px 20px;
  }
  .columnist-signature {
    grid-template-columns: 1fr;
  }
}
.post-page--columnist {
  background: #ffffff;
}

.post-article--columnist {
  background: #ffffff;
}

.post-article__header--columnist {
  padding-top: 18px;
}

.post-article__header--columnist h1 {
  max-width: 100%;
  color: #101d39;
}

.post-featured-image--columnist img {
  border-radius: 0;
  box-shadow: none;
}

.post-share--columnist {
  margin-bottom: 22px;
}

.columnist-opening-quote {
  background: #ffffff;
  padding: 24px 0;
}
.columnist-opening-quote p {
  max-width: 760px;
}

.post-content--columnist {
  width: 100%;
  font-size: 1.08rem;
  line-height: 1.88;
}

.columnist-signature {
  max-width: 820px;
  background: #ffffff;
}

.columnist-more-posts {
  max-width: 100%;
}

.post-sidebar-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.post-sidebar-card + .post-sidebar-card {
  margin-top: 30px;
}

.post-sidebar-card__heading {
  position: relative;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(12, 24, 44, 0.12);
  color: #0c1830;
  font-size: 1.05rem;
  font-weight: 700;
}
.post-sidebar-card__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 104px;
  height: 3px;
  background: #0031FF;
}

.post-sidebar-list {
  display: flex;
  flex-direction: column;
}

.post-sidebar-list__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(12, 24, 44, 0.08);
}
.post-sidebar-list__item + .post-sidebar-list__item {
  margin-top: 18px;
}

.post-sidebar-list__media {
  display: block;
  overflow: hidden;
  background: #ece7df;
  aspect-ratio: 1;
}
.post-sidebar-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-sidebar-list__content a {
  color: var(--story-category-color, #111f3c);
  font-size: 0.98rem;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.post-sidebar-ad {
  display: block;
}
.post-sidebar-ad img {
  width: 100%;
  height: auto;
  display: block;
}

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

.related-posts__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 18px 0;
  border-right: 1px solid rgba(12, 24, 44, 0.08);
}
.related-posts__card:last-child {
  border-right: 0;
}

.related-posts__media {
  display: block;
  overflow: hidden;
  background: #ece7df;
  aspect-ratio: 16/10;
  border-radius: 16px;
}
.related-posts__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-posts__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.related-posts__body h3 {
  margin: 0;
  color: #101d39;
  font-size: 1.05rem;
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.related-posts__body h3 a {
  color: inherit;
}

.post-share svg {
  width: 20px;
  height: 20px;
  display: block;
}
.post-share a {
  width: 38px;
  height: 38px;
  padding: 0;
  justify-content: center;
  border-radius: 10px;
  border-color: var(--social-color, #152543);
  background: var(--social-color, #152543);
  color: #ffffff;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.post-share a:hover {
  background: color-mix(in srgb, var(--social-color, #0031FF) 78%, black);
  color: #ffffff;
  border-color: color-mix(in srgb, var(--social-color, #0031FF) 78%, black);
}

.post-article__header--columnist h1 {
  font-family: "Cairo", "Poppins", sans-serif;
  color: #161616;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.columnist-more-posts__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-article__header h1,
.post-article__header--columnist h1,
.category-header h1,
.category-page__hero h1,
.sidebar-most-read-item__title,
.columnist-more-posts__card h3,
.related-posts__body h3 {
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .related-posts__grid,
  .columnist-more-posts__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .related-posts__card {
    padding-inline: 0;
    padding-top: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(12, 24, 44, 0.08);
  }
  .related-posts__card:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 640px) {
  .post-article__header--columnist h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 720px) {
  .post-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .post-gallery-lightbox {
    padding: 16px;
  }
  .post-gallery-lightbox__dialog {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .post-gallery-lightbox__figure img {
    max-height: calc(100vh - 220px);
  }
  .post-gallery-lightbox__close {
    top: 10px;
    right: 10px;
    background: rgba(9, 17, 31, 0.76);
  }
  .post-gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
  }
  .post-gallery-lightbox__nav:hover,
  .post-gallery-lightbox__nav:focus-visible {
    transform: translateY(calc(-50% - 1px));
  }
  .post-gallery-lightbox__nav--prev {
    left: 10px;
  }
  .post-gallery-lightbox__nav--next {
    right: 10px;
  }
}
@media (max-width: 560px) {
  .post-gallery__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .post-gallery__grid {
    grid-template-columns: 1fr;
  }
  .post-gallery__item {
    aspect-ratio: 16/10;
  }
}

/*# sourceMappingURL=site-post.css.map */
