/**
 * Blog — Mora news-2 style list + sidebar (Prarvi brand)
 */

body.page-blog.blog-page {
  background: #f4f7fb;
}

body.page-blog #main {
  overflow-x: clip;
}

/* Hero — matches Services / Career inner-page pattern */
.blog-hero {
  position: relative;
  min-height: min(48vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background-color: #0b0a88;
  background-image: url("../img/hero-slider/slider-2.jpg");
  background-size: cover;
  background-position: center 42%;
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 4.5rem) clamp(1rem, 4vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.blog-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.blog-hero__breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.blog-hero__breadcrumb a:hover {
  color: #55d1cb;
}

.blog-hero__breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.65;
}

.blog-hero__title {
  margin: 0 0 0.75rem;
  width: 100%;
  max-width: none;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(2.25rem, 6.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-wrap: balance;
}

.blog-hero__tagline {
  margin: 0 auto;
  max-width: 42rem;
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.98);
  text-wrap: balance;
}

.blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.blog-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0 1.15rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.blog-hero__btn--primary {
  background: #55d1cb;
  color: #0b0a88;
}

.blog-hero__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(85, 209, 203, 0.35);
  color: #0b0a88;
}

.blog-hero__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.blog-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Trust strip — below hero, same as Services page */
.blog-trust {
  padding-block: 1.25rem;
  background: #fff;
  border-bottom: 1px solid rgba(11, 10, 136, 0.08);
}

.blog-trust__wrap {
  box-sizing: border-box;
  width: min(100%, 1140px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.blog-trust__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 767px) {
  .blog-trust__list {
    grid-template-columns: 1fr;
  }
}

.blog-trust__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #f6f8fc;
  border-radius: 12px;
  border: 1px solid rgba(11, 10, 136, 0.06);
}

.blog-trust__item i {
  font-size: 1.35rem;
  color: #0b0a88;
}

.blog-trust__item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  color: #0b0a88;
}

.blog-trust__item span {
  font-size: 0.8125rem;
  color: #5c6370;
}

/* Layout */
.blog-wrap {
  width: min(100%, 1140px);
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1rem, 4vw, 1.5rem) clamp(2.5rem, 5vw, 3.5rem);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

/* Category tabs */
.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(11, 10, 136, 0.1);
}

.blog-tabs__btn {
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(11, 10, 136, 0.12);
  border-radius: 999px;
  background: #fff;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0b0a88;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-tabs__btn:hover,
.blog-tabs__btn.is-active {
  background: #0b0a88;
  border-color: #0b0a88;
  color: #fff;
}

@media (max-width: 767px) {
  .blog-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.45rem;
    padding-bottom: 0.35rem;
    margin-bottom: 1rem;
  }

  .blog-tabs::-webkit-scrollbar {
    display: none;
  }

  .blog-tabs__btn {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .blog-wrap {
    padding-inline: clamp(0.85rem, 4vw, 1.15rem);
  }

  .blog-card__title {
    font-size: 1rem;
  }
}

/* Post list — horizontal cards (Mora news-2) */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(11, 10, 136, 0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.blog-card:first-child {
  padding-top: 0;
}

.blog-card:hover {
  background: rgba(85, 209, 203, 0.06);
}

.blog-card:hover .blog-card__title {
  color: #0b0a88;
}

.blog-card:hover .blog-card__meta,
.blog-card:hover .blog-card__excerpt {
  color: #5c6370;
}

.blog-card.is-hidden {
  display: none;
}

.blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #0b0a88 0%, #3bb8b2 100%);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.blog-card__title {
  margin: 0 0 0.45rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #0b0a88;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card__title {
  color: #3bb8b2;
}

.blog-card__meta {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5c6370;
}

.blog-card__meta time {
  color: #0b0a88;
}

.blog-card__meta span {
  opacity: 0.85;
}

.blog-card__excerpt {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #5c6370;
}

/* Pagination */
.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
}

.blog-pagination__btn,
.blog-pagination__num {
  min-width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.65rem;
  border: 1px solid rgba(11, 10, 136, 0.12);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0b0a88;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-pagination__num.is-active,
.blog-pagination__btn:hover:not(:disabled),
.blog-pagination__num:hover {
  background: #0b0a88;
  border-color: #0b0a88;
  color: #fff;
}

.blog-pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Sidebar widgets */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blog-widget {
  padding: 1.15rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(11, 10, 136, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(11, 10, 136, 0.05);
}

.blog-widget__title {
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0b0a88;
  border-bottom: 2px solid #55d1cb;
}

.blog-cats {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-cats li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(11, 10, 136, 0.08);
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-cats li:last-child {
  border-bottom: none;
}

.blog-cats a {
  color: #5c6370;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-cats a:hover {
  color: #0b0a88;
}

.blog-cats span {
  flex-shrink: 0;
  min-width: 1.75rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(85, 209, 203, 0.2);
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  color: #0b0a88;
}

.blog-trending {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-trending li + li {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(11, 10, 136, 0.08);
}

.blog-trending a {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0b0a88;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-trending a:hover {
  color: #3bb8b2;
}

.blog-trending small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5c6370;
}

.blog-connect {
  text-align: center;
  background: linear-gradient(145deg, #0b0a88 0%, #12108a 55%, #0d6b66 100%);
  border: none;
  color: #fff;
}

.blog-connect .blog-widget__title {
  color: #ffffff;
  border-bottom-color: rgba(85, 209, 203, 0.5);
}

.blog-connect p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.blog-connect__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-connect__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.blog-connect__btn--primary {
  background: #55d1cb;
  color: #0b0a88;
}

.blog-connect__btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.blog-connect__btn--primary:hover {
  background: #3bb8b2;
  color: #0b0a88;
  transform: translateY(-1px);
}

.blog-connect__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-1px);
}

/* Article detail — Mora news-details style */
.blog-layout--detail {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.blog-page--detail .blog-article-wrap {
  width: 100%;
  max-width: none;
  padding: 0;
}

.blog-page--detail .blog-article {
  margin-bottom: 1.25rem;
}

.blog-article__content h4 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0b0a88;
}

.blog-article__highlights {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(11, 10, 136, 0.08);
}

.blog-article__highlights-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0b0a88;
}

.blog-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.blog-highlight {
  padding: 0.85rem 0.95rem;
  background: rgba(85, 209, 203, 0.08);
  border: 1px solid rgba(85, 209, 203, 0.25);
  border-radius: 10px;
}

.blog-highlight__title {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #0b0a88;
}

.blog-highlight__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #5c6370;
}

.blog-article__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(11, 10, 136, 0.08);
}

.blog-article__share-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0b0a88;
  margin-right: 0.25rem;
}

.blog-article__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(11, 10, 136, 0.12);
  border-radius: 8px;
  background: #fff;
  color: #0b0a88;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-article__share-btn:hover {
  background: #0b0a88;
  border-color: #0b0a88;
  color: #fff;
}

.blog-related {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(11, 10, 136, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(11, 10, 136, 0.05);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.blog-related:hover {
  background: rgba(85, 209, 203, 0.06);
  border-color: rgba(85, 209, 203, 0.35);
}

.blog-related__media {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0b0a88;
}

.blog-related__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-related__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #3bb8b2;
}

.blog-related__title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.4;
  color: #0b0a88;
}

.blog-author,
.blog-comments,
.blog-reply {
  margin-bottom: 1.25rem;
  padding: clamp(1.15rem, 3vw, 1.5rem);
  background: #fff;
  border: 1px solid rgba(11, 10, 136, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(11, 10, 136, 0.05);
}

.blog-author__heading,
.blog-comments__heading,
.blog-reply__heading {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0b0a88;
}

.blog-author__card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.blog-author__avatar {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #0b0a88, #3bb8b2);
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.blog-author__name {
  margin: 0 0 0.2rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0b0a88;
}

.blog-author__date {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5c6370;
}

.blog-author__bio {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #5c6370;
}

.blog-comments__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-comment {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(11, 10, 136, 0.08);
}

.blog-comment:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-comment:first-child {
  padding-top: 0;
}

.blog-comment__avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 10, 136, 0.08);
  font-size: 0.75rem;
  font-weight: 800;
  color: #0b0a88;
}

.blog-comment__name {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0b0a88;
}

.blog-comment__text {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #5c6370;
}

.blog-comment__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5c6370;
}

.blog-comment__reply {
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: #0b0a88;
  cursor: pointer;
  text-decoration: underline;
}

.blog-comment__reply:hover {
  color: #3bb8b2;
}

.blog-reply__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-reply__field {
  display: block;
}

.blog-reply__field input,
.blog-reply__field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(11, 10, 136, 0.15);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.875rem;
  color: #0b0a88;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-reply__field input:focus,
.blog-reply__field textarea:focus {
  outline: none;
  border-color: #55d1cb;
  box-shadow: 0 0 0 3px rgba(85, 209, 203, 0.25);
}

.blog-reply__field textarea {
  resize: vertical;
  min-height: 120px;
}

.blog-reply__submit {
  margin-top: 0.75rem;
  padding: 0.65rem 1.35rem;
  border: none;
  border-radius: 10px;
  background: #0b0a88;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.blog-reply__submit:hover {
  background: #3bb8b2;
  color: #0b0a88;
}

.blog-reply__note {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d6b66;
}

.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.blog-topic {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(11, 10, 136, 0.12);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0b0a88;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-topic:hover {
  background: #0b0a88;
  color: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 991px) {
  .blog-layout--detail {
    grid-template-columns: 1fr;
  }

  .blog-highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-reply__row {
    grid-template-columns: 1fr;
  }

  .blog-related {
    grid-template-columns: 1fr;
  }

  .blog-related__media {
    max-width: 200px;
  }
}

/* Article detail (legacy single-column wrap) */
.blog-article-wrap {
  width: min(100%, 820px);
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1rem, 4vw, 1.5rem) clamp(2.5rem, 5vw, 3.5rem);
}

.blog-article {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #fff;
  border: 1px solid rgba(11, 10, 136, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(11, 10, 136, 0.06);
}

.blog-article__media {
  margin: 0 0 1.25rem;
  border-radius: 12px;
  overflow: hidden;
}

.blog-article__media img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.blog-article__meta {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5c6370;
}

.blog-article__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0b0a88;
}

.blog-article__content {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #5c6370;
}

.blog-article__content h2 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0b0a88;
}

.blog-article__content p {
  margin: 0 0 1rem;
}

.blog-article__content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.blog-article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0b0a88;
  text-decoration: none;
}

.blog-article__back:hover {
  color: #3bb8b2;
}

@media (max-width: 991px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-connect {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card__media {
    aspect-ratio: 16 / 9;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}
