@charset "UTF-8";
/* ==========================================================================
   post.css - Amara Fetish Clinic
   Single Post Page styling (Hero, Layout, Article, Figures, Typography)
   ========================================================================== */

/* Hero Header for Single Posts */
.hero-post {
  position: relative;
  background-color: var(--color-navy-darker);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  overflow: hidden;
}

.hero-post__bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-post__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.6) contrast(1.1);
}

.hero-post__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 22, 34, 0.65) 0%, rgba(11, 22, 34, 0.95) 100%);
  z-index: 2;
}

.hero-post__container {
  position: relative;
  z-index: 3;
}

.hero-post__content {
  width: 100%;
}

.hero-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.88rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero-post__badge {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.hero-post__author-link {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 500;
}

.hero-post__author-link:hover {
  color: var(--color-accent);
}

.hero-post__title {
  color: var(--color-white);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.hero-post__subtitle {
  color: var(--color-white);
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  opacity: 0.95;
}

/* Post Section & Layout */
.post-section,
.post-layout-section {
  padding-top: 1.5rem;
  padding-bottom: 50px;
  background-color: var(--color-navy);
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .post-layout {
    grid-template-columns: 1fr 340px;
    gap: 4rem;
  }
}

/* Article Styling */
.post-article {
  color: var(--color-white);
  font-size: 1.05rem;
  line-height: 1.85;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .post-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .post-article {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.post-intro .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-accent);
}

.post-article h2,
.post-article h3,
.post-article h4,
.post-article h5,
.post-article h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-white);
}

.post-article h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-white-line);
}

.post-article h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  margin: 1.75rem 0 0.75rem;
}

.post-article p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.post-article a {
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  transition: color var(--transition-speed);
}

.post-article a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

/* Main Featured Image in Article */
.post-main-image {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  background-color: var(--color-navy-light);
  border: 1px solid var(--color-white-line);
  border-radius: var(--border-radius-base);
  overflow: hidden;
  display: block;
}

.post-main-image__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Post Figure Images */
.post-figure {
  margin: 2.5rem 0;
  background-color: var(--color-navy-light);
  border: 1px solid var(--color-white-line);
  border-radius: var(--border-radius-base);
  overflow: hidden;
}

.post-article > .post-figure:first-of-type {
  margin-top: 0;
}

.post-figure__image {
  width: 100%;
  height: auto;
  display: block;
}

.post-figure__caption {
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  color: var(--color-text-white-muted);
  text-align: center;
  font-style: italic;
  background-color: var(--color-navy-darker);
  border-top: 1px solid var(--color-white-line);
}

/* Embedded Responsive Video Container */
.post-video-container {
  margin: 2.5rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.post-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-base);
  border: 1px solid var(--color-white-line);
  background-color: #000;
}

.post-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Call To Action Box */
.post-cta {
  margin: 4rem 0 3rem;
}

.post-cta__card {
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy-darker) 100%);
  border: 1px solid var(--color-accent);
  border-radius: var(--border-radius-base);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.post-cta__icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.post-cta__title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.post-cta__text {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-white-muted);
}

.post-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Author Box */
.post-author-box {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background-color: var(--color-navy-light);
  border: 1px solid var(--color-white-line);
  border-radius: var(--border-radius-base);
  padding: 2rem;
  margin-top: 3.5rem;
}

.post-author-box__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
  flex-shrink: 0;
}

.post-author-box__name {
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.post-author-box__role {
  display: block;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}

.post-author-box__bio {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-text-white-muted);
  margin: 0;
}

@media (max-width: 600px) {
  .post-author-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Sidebar Column & Widgets */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-widget {
  background-color: var(--color-navy-light);
  border: 1px solid var(--color-white-line);
  border-radius: var(--border-radius-base);
  padding: 1.75rem;
}

.blog-widget__title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-accent);
  position: relative;
  letter-spacing: 0.5px;
}

/* Search Widget */
.blog-search-form {
  display: flex;
  gap: 0.5rem;
}

.blog-search-input {
  flex: 1;
  background-color: var(--color-navy-darker);
  border: 1px solid var(--color-white-line);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-base);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-speed);
}

.blog-search-input:focus {
  border-color: var(--color-accent);
}

.blog-search-btn {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-base);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background-color var(--transition-speed);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.blog-search-btn:hover {
  background-color: var(--color-accent-hover);
}

/* Recent Posts Widget */
.blog-recent-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 0;
  margin: 0;
}

.blog-recent-item {
  border-bottom: 1px dashed var(--color-white-line);
  padding-bottom: 0.9rem;
  list-style: none;
}

.blog-recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-recent-link {
  color: var(--color-accent);
  font-size: 0.93rem;
  line-height: 1.45;
  display: block;
  transition: color var(--transition-speed);
  text-decoration: none;
}

.blog-recent-link:hover {
  color: var(--color-white);
}

.blog-recent-date {
  font-size: 0.78rem;
  color: var(--color-text-white-muted);
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Categories Widget */
.blog-categories-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.blog-category-item {
  list-style: none;
}

.blog-category-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-accent);
  font-size: 0.95rem;
  padding: 0.4rem 0;
  transition: color var(--transition-speed), transform var(--transition-speed);
  text-decoration: none;
}

.blog-category-item a:hover {
  color: var(--color-white);
  transform: translateX(3px);
}

.blog-category-count {
  background-color: var(--color-navy-darker);
  color: var(--color-text-white-muted);
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  border: 1px solid var(--color-white-line);
}

