/* ==========================================================================
   Blog - Albums By ZG
   Follows the same glossy / glass design language as index.css
   ========================================================================== */

/* Blog Hero Start ================================================ */

/* Header is position:absolute and overlays the page, so heroes need top clearance
   (102px desktop / ~78px mobile) or the title and feature image sit under the nav. */
.blog-hero {
  padding: 170px 0 60px 0;
  text-align: center;
}

.blog-hero .hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #040404;
  background: #eaf4fc;
  border-radius: 8px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.blog-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #23272b;
  margin-bottom: 18px;
}

.blog-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: #6c757d;
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .blog-hero {
    padding: 120px 0 40px 0;
  }

  .blog-hero h1 {
    font-size: 1.9rem;
  }
}

/* Blog Hero End ================================================ */

/* Blog Card Start ================================================ */

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.05) 40%,
      rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
  transform: rotate(25deg);
  z-index: 2;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.blog-card .card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.blog-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .card-media img {
  transform: scale(1.06);
}

.blog-card .card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #040404;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.blog-card .card-body-inner {
  position: relative;
  z-index: 3;
  padding: 26px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.blog-card .post-meta {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a9099;
  margin-bottom: 12px;
}

.blog-card .post-meta span + span::before {
  content: "•";
  margin: 0 8px;
}

.blog-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card h3 a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h3 a:hover {
  color: #2397e8;
}

.blog-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card .read-more {
  margin-top: auto;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #040404;
  text-decoration: none;
  border-bottom: 2px solid #040404;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.blog-card .read-more:hover {
  color: #2397e8;
  border-bottom-color: #2397e8;
}

.blog-card .read-more i {
  transition: transform 0.3s ease;
}

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

/* Blog Card End ================================================ */

/* Featured Post Start ================================================ */

.featured-post {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 70px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.featured-post .featured-media {
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

.featured-post .featured-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-post:hover .featured-media img {
  transform: scale(1.05);
}

.featured-post .featured-body {
  padding: 45px 45px 45px 40px;
}

.featured-post .featured-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  background: #040404;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

.featured-post h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.featured-post h2 a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-post h2 a:hover {
  color: #2397e8;
}

.featured-post .post-meta {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a9099;
  margin-bottom: 16px;
}

.featured-post .post-meta span + span::before {
  content: "•";
  margin: 0 8px;
}

.featured-post p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 26px;
}

@media (max-width: 991.98px) {
  .featured-post .featured-body {
    padding: 32px 26px;
  }

  .featured-post h2 {
    font-size: 1.5rem;
  }

  .featured-post .featured-media,
  .featured-post .featured-media img {
    min-height: 260px;
  }
}

/* Featured Post End ================================================ */

/* Pagination Start ================================================ */

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 70px;
  padding: 0;
  list-style: none;
}

.blog-pagination li a,
.blog-pagination li span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
  color: #040404;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.blog-pagination li a:hover {
  background: #040404;
  color: #ffffff;
  transform: scale(1.08);
}

.blog-pagination li.active span {
  background: #040404;
  color: #ffffff;
}

.blog-pagination li.disabled span {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Pagination End ================================================ */

/* Newsletter Start ================================================ */

.blog-newsletter {
  margin-top: 90px;
  padding: 55px 30px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.blog-newsletter h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #23272b;
  margin-bottom: 12px;
}

.blog-newsletter p {
  color: #6c757d;
  max-width: 520px;
  margin: 0 auto 28px auto;
}

.blog-newsletter .newsletter-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.blog-newsletter .newsletter-form input {
  flex: 1 1 auto;
  border-radius: 12px;
  border: 1px solid #e1e1f2;
  padding: 12px 18px;
  font-size: 0.95rem;
  outline: none;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.3s ease;
}

.blog-newsletter .newsletter-form input:focus {
  border-color: #2397e8;
}

@media (max-width: 575.98px) {
  .blog-newsletter .newsletter-form {
    flex-direction: column;
  }
}

/* Newsletter End ================================================ */

/* ==========================================================================
   Single Post
   ========================================================================== */

/* Post Header Start ================================================ */

.post-hero {
  padding: 160px 0 0 0;
}

.post-breadcrumb {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a9099;
  margin-bottom: 22px;
}

.post-breadcrumb a {
  color: #8a9099;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-breadcrumb a:hover {
  color: #040404;
}

.post-breadcrumb .sep {
  margin: 0 8px;
}

.post-hero .post-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #040404;
  background: #eaf4fc;
  border-radius: 8px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.post-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #23272b;
  margin-bottom: 22px;
}

.post-hero .post-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #6c757d;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .post-hero {
    padding: 110px 0 0 0;
  }

  .post-hero h1 {
    font-size: 1.8rem;
  }

  .post-hero .post-lead {
    font-size: 1rem;
  }
}

/* Author Row Start ================================================ */

.post-author-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.post-author-row .author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #040404;
  background: linear-gradient(135deg, #eaf4fc 60%, #f5f8fb 100%);
  border: 1px solid #e1e1f2;
}

.post-author-row .author-name {
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.post-author-row .author-role {
  font-size: 12px;
  color: #8a9099;
  letter-spacing: 0.5px;
}

.post-author-row .meta-divider {
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a9099;
}

.post-author-row .meta-divider span + span::before {
  content: "•";
  margin: 0 8px;
}

@media (max-width: 575.98px) {
  .post-author-row .meta-divider {
    margin-left: 0;
    width: 100%;
  }
}

/* Author Row End ================================================ */

/* Post Feature Image Start ================================================ */

.post-feature-image {
  margin: 50px 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.post-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Post Feature Image End ================================================ */

/* Article Body Start ================================================ */

.post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3f454c;
}

.post-body h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #23272b;
  margin: 48px 0 18px 0;
  letter-spacing: -0.3px;
}

.post-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #23272b;
  margin: 32px 0 14px 0;
}

.post-body p {
  margin-bottom: 22px;
}

.post-body a {
  color: #2397e8;
  text-decoration: underline;
}

.post-body ul,
.post-body ol {
  margin: 0 0 24px 0;
  padding-left: 22px;
}

.post-body li {
  margin-bottom: 10px;
}

.post-body strong {
  color: #111;
  font-weight: 700;
}

.post-body img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 34px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.post-body figure {
  margin: 34px 0;
}

.post-body figure img {
  margin: 0 0 12px 0;
}

.post-body figcaption {
  font-size: 13px;
  color: #8a9099;
  text-align: center;
  letter-spacing: 0.3px;
}

@media (max-width: 767.98px) {
  .post-body {
    font-size: 1rem;
  }

  .post-body h2 {
    font-size: 1.35rem;
  }
}

/* Pull Quote Start ================================================ */

.post-body blockquote,
.pull-quote {
  position: relative;
  margin: 44px 0;
  padding: 34px 34px 34px 40px;
  border-radius: 20px;
  border-left: 4px solid #040404;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  color: #23272b;
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.post-body blockquote p:last-child,
.pull-quote p:last-child {
  margin-bottom: 0;
}

.post-body blockquote cite,
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a9099;
}

/* Pull Quote End ================================================ */

/* Callout Start ================================================ */

.post-callout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 40px 0;
  padding: 28px 30px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border: 1px solid #eff2fa;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.post-callout .callout-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2397e8;
  background: linear-gradient(135deg, #eaf4fc 60%, #f5f8fb 100%);
  border: 1px solid #e1e1f2;
}

.post-callout h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.post-callout p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Callout End ================================================ */

/* Tags + Share Start ================================================ */

.post-footer-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 32px;
  border-top: 1px solid #e6e8ec;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-tags a {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #444;
  text-decoration: none;
  padding: 7px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #e1e1f2;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: #040404;
  color: #ffffff;
  border-color: #040404;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-share .share-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a9099;
}

.post-share a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #040404;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.post-share a:hover {
  background: #040404;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Tags + Share End ================================================ */

/* Post Navigation Start ================================================ */

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 55px;
}

.post-nav a {
  padding: 26px 28px;
  border-radius: 20px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-nav a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.post-nav a small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a9099;
  margin-bottom: 8px;
}

.post-nav a span {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

.post-nav a.next {
  text-align: right;
}

.post-nav a.is-empty {
  pointer-events: none;
  opacity: 0.45;
}

@media (max-width: 767.98px) {
  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav a.next {
    text-align: left;
  }
}

/* Post Navigation End ================================================ */

/* Related Posts Start ================================================ */

.related-posts {
  margin-top: 100px;
}

.related-posts .section-title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #23272b;
}

/* Related Posts End ================================================ */

/* Post CTA Start ================================================ */

.post-cta {
  margin-top: 90px;
  padding: 55px 40px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.post-cta h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #23272b;
  margin-bottom: 12px;
}

.post-cta p {
  color: #6c757d;
  max-width: 560px;
  margin: 0 auto 28px auto;
  line-height: 1.7;
}

/* Post CTA End ================================================ */
