/* ===== BEAUTY SINGLE POST START ===== */

.beauty-single-post {
  background:
    radial-gradient(circle at 14% 10%, rgba(215, 185, 159, 0.16), transparent 30%),
    linear-gradient(180deg, #fbf6f2 0%, #f4e8df 100%);
}

/* ===== HERO ===== */

.beauty-single-hero {
  padding: 44px 0 26px;
}

.beauty-single-hero-card {
  position: relative;
  overflow: hidden;
  padding: 42px 46px;
  border-radius: 34px;
  border: 1px solid var(--beauty-border);
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 185, 159, 0.22), transparent 28%),
    rgba(255,255,255,0.72);
  box-shadow: 0 22px 60px rgba(65,45,32,0.10);
}

.beauty-single-hero-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(215, 185, 159, 0.16);
}

.beauty-single-breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--beauty-muted);
  font-size: 13px;
}

.beauty-single-breadcrumbs a:hover {
  color: var(--beauty-accent-dark);
}

.beauty-single-category {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #f1e4da;
  color: var(--beauty-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beauty-single-title {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: #46372f;
}

.beauty-single-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: var(--beauty-muted);
  font-size: 14px;
}

/* ===== CONTENT ===== */

.beauty-single-content-section {
  padding: 10px 0 70px;
}

.beauty-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

.beauty-single-article {
  min-width: 0;
}

.beauty-single-featured-image {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--beauty-border);
  box-shadow: 0 20px 60px rgba(65,45,32,0.10);
}

.beauty-single-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.beauty-single-content {
  margin-top: 28px;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid var(--beauty-border);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 18px 50px rgba(65,45,32,0.08);
}

/* ===== TYPOGRAPHY ===== */

.beauty-single-content h2,
.beauty-single-content h3,
.beauty-single-content h4 {
  margin-top: 38px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  color: #46372f;
}

.beauty-single-content h2 {
  font-size: 42px;
}

.beauty-single-content h3 {
  font-size: 32px;
}

.beauty-single-content p {
  margin: 0 0 20px;
  color: #5f5049;
  font-size: 17px;
  line-height: 1.9;
}

.beauty-single-content ul,
.beauty-single-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.beauty-single-content li {
  margin-bottom: 10px;
  color: #5f5049;
  line-height: 1.8;
}

.beauty-single-content blockquote {
  margin: 34px 0;
  padding: 26px 30px;
  border-left: 4px solid var(--beauty-accent);
  border-radius: 22px;
  background: #f5ebe4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.6;
  color: #46372f;
}

.beauty-single-content img {
  margin: 28px 0;
  border-radius: 22px;
}

/* ===== TAGS ===== */

.beauty-single-tags {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--beauty-border);
}

.beauty-single-tags h3 {
  margin: 0 0 16px;
  font-size: 22px;
}

.beauty-single-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.beauty-single-tags-list a {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f1e4da;
  color: #6e5548;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s ease;
}

.beauty-single-tags-list a:hover {
  background: var(--beauty-accent);
}

/* ===== SIDEBAR ===== */

.beauty-single-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 20px;
}

.beauty-single-sidebar-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--beauty-border);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 46px rgba(65,45,32,0.08);
}

.beauty-single-sidebar-card h3 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
  color: #46372f;
}

.beauty-single-sidebar-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beauty-single-sidebar-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7eee8;
  transition: 0.2s ease;
}

.beauty-single-sidebar-list li a:hover {
  background: #f1e4da;
}

.beauty-single-sidebar-list span {
  color: #46372f;
  font-weight: 600;
}

.beauty-single-sidebar-list small {
  color: var(--beauty-muted);
}

/* ===== RECENT POSTS ===== */

.beauty-single-recent-posts {
  display: grid;
  gap: 14px;
}

.beauty-single-recent-post {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
}

.beauty-single-recent-image {
  overflow: hidden;
  border-radius: 16px;
}

.beauty-single-recent-image img {
  width: 76px;
  height: 76px;
  object-fit: cover;
}

.beauty-single-recent-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.beauty-single-recent-info strong {
  color: #46372f;
  font-size: 14px;
  line-height: 1.4;
}

.beauty-single-recent-info small {
  color: var(--beauty-muted);
  font-size: 12px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1000px) {

  .beauty-single-layout {
    grid-template-columns: 1fr;
  }

  .beauty-single-sidebar {
    position: static;
  }

}

@media (max-width: 700px) {

  .beauty-single-hero {
    padding: 28px 0 18px;
  }

  .beauty-single-hero-card {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .beauty-single-title {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.04;
  }

  .beauty-single-meta {
    gap: 12px;
    margin-top: 18px;
    font-size: 13px;
  }

  .beauty-single-content {
    margin-top: 18px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .beauty-single-content h2 {
    font-size: 32px;
  }

  .beauty-single-content h3 {
    font-size: 26px;
  }

  .beauty-single-content p {
    font-size: 16px;
    line-height: 1.75;
  }

  .beauty-single-sidebar-card {
    padding: 22px;
    border-radius: 22px;
  }

}

@media (max-width: 560px) {

  .beauty-single-content blockquote {
    padding: 20px;
    font-size: 20px;
  }

  .beauty-single-recent-post {
    grid-template-columns: 64px 1fr;
  }

  .beauty-single-recent-image img {
    width: 64px;
    height: 64px;
  }

}

/* ===== BEAUTY SINGLE POST END ===== */