/* Post Details page styles (copied from homepage.css; page-specific) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", Sans-serif;
}

body {
    background: #f0f2f6;
    color: #1b1b1b;
    overflow-x: hidden;
    transition: opacity 0.6s ease-in-out;
}

.footer {
  background: #001b36;
  padding: 10px 20px;
  text-align: center;
  color: white;
}

.footer-logos img {
  height: 50px;
  margin: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.footer-links h4 {
  color: #ffc107;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  display: block;
  margin-top: 5px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ffc107;
}

.footer-copy {
  margin-top: 25px;
  opacity: 0.85;
}

/* ============================= */
/* POST DETAILS (Read More)      */
/* ============================= */

.post-details {
  width: min(980px, 92%);
  margin: 40px auto 70px;
}

.post-details-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.post-title {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 900;
  color: #001b36;
}

.post-meta {
  color: #3a663a;
  font-size: 14px;
  margin-bottom: 18px;
}

.post-body {
  color: #2a2a2a;
  line-height: 1.65;
  font-size: 16px;
}

.post-gallery {
  margin: 14px 0 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.post-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.post-optional {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e8edf5;
}

.post-opt-heading {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 900;
  color: #002855;
}

.post-opt-paragraph {
  margin: 0 0 12px;
  color: #2a2a2a;
  line-height: 1.65;
}

.post-opt-list {
  margin: 0 0 12px 18px;
  color: #2a2a2a;
  line-height: 1.65;
}

@media (max-width: 520px) {
  .post-details-card {
    padding: 18px 16px;
  }

  .post-title {
    font-size: 26px;
  }

  .post-img {
    height: auto;
  }
}
