/* =============================================
   SINGLE BLOG POST — single-blog.css
   ============================================= */

/* Hero */
.sp-hero {
  background: #FCF7F4;
}
.sp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  max-height: 513px;
}
.sp-hero__left {
  padding: 50px 50px 50px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sp-hero__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f6fb1;
  margin-bottom: 14px;
}
.sp-hero__title {
  font-family: "Poly", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.25;
  color: #000;
  margin: 0 0 20px;
}
.sp-hero__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  margin: 0;
}
.sp-hero__author img {
  flex-shrink: 0;
}
.sp-hero__image {
  overflow: hidden;
  border-radius: 0px;
}
.sp-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

/* Content */
.sp-content {
  padding: 60px 20px;
}
.sp-content__wrap {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  color: #000000;
}
.sp-content__wrap h2,
.sp-content__wrap h3 {
  font-family: "Poly", serif;
  font-weight: 500;
  color: #000000;

}
.sp-content__wrap h2 {
  font-size: 28px;

}
.sp-content__wrap h3 {
  font-size: 20px;
}
.sp-content__wrap p {
  margin-bottom: 28px;
    font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.54);
}
.sp-content__wrap ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
.sp-content__wrap ul li {
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 4px;
}
.sp-content__wrap ul li::before {
  content: "·";
  position: absolute;
  left: 0.4em;
  color: #333;
}

/* Footer: share + featured */
.sp-footer {
  padding: 0 20px 60px;
}
.sp-footer__wrap {
  max-width: 800px;
  margin: 0 auto;
}
.sp-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 28px;
}

/* Share */
.sp-share {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid #e0e0e0;
  flex-direction: column;
}
.sp-share__label {
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  font-family: 'poly',serif;
}
.sp-share__icons {
  display: flex;
  gap: 22px;
}
.sp-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: #fff;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  padding: 0;
}
.sp-share__btn:hover {
  border-color: #2f6fb1;
  color: #fff;
}

/* Featured posts */
.sp-featured__heading {
  font-size: 22px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 20px;
}
.sp-featured__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-featured__list li {
  margin-bottom: 12px;
}
.sp-featured__list li a {
  font-size: 15px;
  color: #111;
  text-decoration: none;
  line-height: 1.4;
}
.sp-featured__list li a:hover {
  color: #2f6fb1;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .sp-hero__inner {
    grid-template-columns: 1fr;
  }
  .sp-hero__image {
    order: -1;
  }
  .sp-hero__image img {
    min-height: 260px;
    height: 260px;
  }
  .sp-hero__left {
    padding: 40px 24px;
  }
  .sp-hero__title {
    font-size: 28px;
  }
}
/*# sourceMappingURL=single-blog.css.map */