/**
 * Together Forever - Single Post Styles
 * 
 * Styles for single blog post pages
 * 
 * @package Together_Forever
 * @since 1.0.0
 */
/* ==========================================================================
   Single Post Template Styles
   ========================================================================== */
.single-post .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.single-post .single-post-hero {
  position: relative;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-post .single-post-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(92, 36, 131, 0.75) 0%, rgba(149, 27, 129, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-post .single-post-hero .hero-overlay .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.single-post .single-post-hero .hero-overlay .hero-content {
  text-align: center;
  padding: 80px 20px;
}
.single-post .single-post-hero .hero-overlay .hero-content .single-post-title {
  font-family: var(--tf-avenir);
  font-size: 52px;
  font-weight: 700;
  color: white;
  margin: 0 auto 32px;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  letter-spacing: -0.5px;
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .back-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--tf-purple);
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-family: var(--tf-avenir);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .back-button svg {
  width: 16px;
  height: 16px;
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .back-button:hover {
  background: var(--tf-pink);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .post-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .post-categories .category-tag {
  display: flex;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--tf-purple);
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .post-categories .category-tag:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.single-post .single-post-header {
  background: linear-gradient(135deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
  padding: 80px 0;
}
.single-post .single-post-header .header-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.single-post .single-post-header .header-content .back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--tf-purple);
  border: none;
  border-radius: 50px;
  padding: 12px 26px;
  font-family: var(--tf-avenir);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.single-post .single-post-header .header-content .back-button svg {
  width: 16px;
  height: 16px;
}
.single-post .single-post-header .header-content .back-button:hover {
  background: var(--tf-pink);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.single-post .single-post-header .header-content .single-post-title-header {
  font-family: var(--tf-avenir);
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 0 0 28px 0;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}
.single-post .single-post-header .header-content .post-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.single-post .single-post-header .header-content .post-categories .category-tag {
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--tf-purple);
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.single-post .single-post-header .header-content .post-categories .category-tag:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.single-post .single-post-content {
  background: #f8f6ff;
  padding: 100px 0 120px;
}
.single-post .single-post-content .single-post-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.single-post .single-post-content .single-post-wrapper .single-post-main {
  background: white;
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header {
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: none;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--tf-purple) 0%, var(--tf-pink) 100%);
  border-radius: 10px;
  padding: 10px 18px;
  margin-bottom: 24px;
  box-shadow: 0 3px 10px rgba(92, 36, 131, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92, 36, 131, 0.3);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day {
  font-family: var(--tf-avenir);
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.3px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month {
  font-family: var(--tf-avenir);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-year {
  font-family: var(--tf-avenir);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day::after,
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  margin-left: 8px;
  vertical-align: middle;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-year::after {
  display: none;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .post-date {
  display: none;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .single-post-title-fallback {
  font-family: var(--tf-avenir);
  font-size: 42px;
  font-weight: 700;
  color: var(--tf-purple);
  margin: 0 0 30px 0;
  line-height: 1.2;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text {
  font-family: var(--tf-avenir);
  font-size: 19px;
  line-height: 1.85;
  color: var(--tf-gray);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text p {
  margin-bottom: 24px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text p:last-child {
  margin-bottom: 0;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h1, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h2, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h3, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h4, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h5, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h6 {
  font-family: var(--tf-avenir);
  color: var(--tf-purple);
  margin-top: 48px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h1 {
  font-size: 36px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h2 {
  font-size: 32px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h3 {
  font-size: 28px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h4 {
  font-size: 24px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h5 {
  font-size: 20px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h6 {
  font-size: 18px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text a {
  color: var(--tf-purple);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text a:hover {
  color: var(--tf-pink);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 36px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text blockquote {
  border-left: 4px solid var(--tf-purple);
  padding: 24px 32px;
  margin: 36px 0;
  background: #f8f6ff;
  border-radius: 12px;
  font-style: italic;
  color: var(--tf-gray);
  font-size: 18px;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text ul, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text ol {
  margin: 24px 0;
  padding-left: 32px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text ul li, .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text ol li {
  margin-bottom: 12px;
  line-height: 1.85;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text code {
  background: #f0e6f5;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 16px;
  color: var(--tf-purple);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text pre {
  background: var(--tf-gray);
  color: white;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 30px 0;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text pre code {
  background: transparent;
  color: white;
  padding: 0;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-tags {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #f0e6f5;
  font-family: var(--tf-avenir);
  font-size: 16px;
  color: var(--tf-gray);
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-tags strong {
  color: var(--tf-purple);
  font-weight: 600;
  margin-right: 8px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-tags a {
  color: var(--tf-purple);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-right: 8px;
}
.single-post .single-post-content .single-post-wrapper .single-post-main .post-tags a:hover {
  color: var(--tf-pink);
  text-decoration: underline;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar {
  position: sticky;
  top: 120px;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content {
  background: white;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .sidebar-title {
  font-family: var(--tf-avenir);
  font-size: 24px;
  font-weight: 700;
  color: var(--tf-purple);
  margin: 0 0 28px 0;
  letter-spacing: -0.3px;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f0e6f5;
  transition: all 0.3s ease;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card:hover {
  transform: translateX(4px);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-thumbnail {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  background: #f0f0f0;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-thumbnail .related-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-thumbnail .related-post-image:hover {
  transform: scale(1.08);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-categories {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-categories .category-tag {
  padding: 6px 10px;
  border-radius: 47px;
  background: #f0e6f5;
  color: var(--tf-purple);
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-categories .category-tag:hover {
  background: #e6d4ed;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-title {
  margin: 0 0 12px 0;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-title a {
  font-family: var(--tf-avenir);
  font-size: 17px;
  font-weight: 600;
  color: var(--tf-gray);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
  letter-spacing: -0.2px;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-title a:hover {
  color: var(--tf-purple);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .related-post-excerpt {
  font-family: var(--tf-avenir);
  font-size: 15px;
  color: var(--tf-gray);
  line-height: 1.65;
  margin: 0 0 14px 0;
  opacity: 0.85;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .read-more-btn {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--tf-purple);
  color: white;
  text-decoration: none;
  font-family: var(--tf-avenir);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(92, 36, 131, 0.2);
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .related-posts .related-post-card .related-post-content .read-more-btn:hover {
  background: var(--tf-pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(92, 36, 131, 0.3);
  color: white;
}
.single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content .no-related-posts {
  font-family: var(--tf-avenir);
  font-size: 14px;
  color: var(--tf-gray);
  text-align: center;
  padding: 20px 0;
}
@media (max-width: 1200px) {
  .single-post .single-post-content {
    padding: 80px 0 100px;
  }
  .single-post .single-post-content .single-post-wrapper {
    gap: 48px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main {
    padding: 48px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .single-post .single-post-hero {
    min-height: 450px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content {
    padding: 60px 20px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .single-post-title {
    font-size: 40px;
    margin-bottom: 28px;
  }
  .single-post .single-post-header {
    padding: 60px 0;
  }
  .single-post .single-post-header .header-content .single-post-title-header {
    font-size: 40px;
    margin-bottom: 24px;
  }
  .single-post .single-post-content {
    padding: 80px 0 100px;
  }
  .single-post .single-post-content .single-post-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-sidebar {
    position: static;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main {
    padding: 48px 40px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header {
    margin-bottom: 28px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge {
    padding: 9px 16px;
    gap: 7px;
    margin-bottom: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day {
    font-size: 19px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month {
    font-size: 11px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-year {
    font-size: 11px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day::after,
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month::after {
    height: 13px;
    margin-left: 7px;
  }
}
@media (max-width: 768px) {
  .single-post .single-post-hero {
    min-height: 350px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content {
    padding: 30px 15px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .single-post-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row {
    flex-direction: column;
    gap: 15px;
  }
  .single-post .single-post-header {
    padding: 40px 0;
  }
  .single-post .single-post-header .header-content .single-post-title-header {
    font-size: 28px;
  }
  .single-post .single-post-header .header-content .back-button {
    margin-bottom: 20px;
  }
  .single-post .single-post-content {
    padding: 60px 0 80px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main {
    padding: 40px 28px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header {
    margin-bottom: 24px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge {
    padding: 8px 14px;
    gap: 6px;
    margin-bottom: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day {
    font-size: 17px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month {
    font-size: 10px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-year {
    font-size: 10px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day::after,
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month::after {
    height: 12px;
    margin-left: 6px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .single-post-title-fallback {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text {
    font-size: 17px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h1 {
    font-size: 28px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h2 {
    font-size: 24px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h3 {
    font-size: 22px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h4 {
    font-size: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h5 {
    font-size: 18px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h6 {
    font-size: 16px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-sidebar .sidebar-content {
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .single-post .single-post-hero {
    min-height: 300px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .single-post-title {
    font-size: 24px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .back-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .single-post .single-post-hero .hero-overlay .hero-content .hero-meta .meta-top-row .post-categories .category-tag {
    font-size: 12px;
    padding: 8px 12px;
  }
  .single-post .single-post-header {
    padding: 30px 0;
  }
  .single-post .single-post-header .header-content .single-post-title-header {
    font-size: 24px;
  }
  .single-post .single-post-header .header-content .back-button {
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  .single-post .single-post-header .header-content .post-categories .category-tag {
    font-size: 12px;
    padding: 8px 12px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main {
    padding: 36px 24px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header {
    margin-bottom: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge {
    padding: 7px 12px;
    gap: 5px;
    margin-bottom: 18px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day {
    font-size: 16px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month {
    font-size: 9px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-year {
    font-size: 9px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-day::after,
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-meta-header .event-date-badge .event-date-month::after {
    height: 11px;
    margin-left: 5px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .single-post-title-fallback {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text {
    font-size: 16px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h1 {
    font-size: 24px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h2 {
    font-size: 22px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h3 {
    font-size: 20px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h4 {
    font-size: 18px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h5 {
    font-size: 16px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text h6 {
    font-size: 15px;
  }
  .single-post .single-post-content .single-post-wrapper .single-post-main .post-content-text blockquote {
    padding: 15px 20px;
  }
}

/* ==========================================================================
   Single Event Specific Styles
   ========================================================================== */
.single-event .single-event-hero {
  position: relative;
}
.single-event .single-event-hero .event-venue-logo {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
  width: 150px;
  height: auto;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.single-event .single-event-hero .event-venue-logo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80px;
  object-fit: contain;
}
.single-event .single-event-hero .event-venue-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.single-event .single-event-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.single-event .single-event-header {
  position: relative;
}
.single-event .single-event-header .container {
  position: relative;
}
.single-event .single-event-header .container .header-content {
  position: relative;
}
.single-event .single-event-header .container .header-content .event-venue-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 150px;
  height: auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.single-event .single-event-header .container .header-content .event-venue-logo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80px;
  object-fit: contain;
}
.single-event .single-event-header .container .header-content .event-venue-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  .single-event .single-event-hero .event-venue-logo {
    width: 120px;
    padding: 12px;
    top: 20px;
    right: 20px;
  }
  .single-event .single-event-hero .event-venue-logo img {
    max-height: 60px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo {
    width: 120px;
    padding: 12px;
    top: 15px;
    right: 15px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo img {
    max-height: 60px;
  }
}
@media (max-width: 768px) {
  .single-event .single-event-hero .event-venue-logo {
    width: 100px;
    padding: 10px;
    top: 15px;
    right: 15px;
  }
  .single-event .single-event-hero .event-venue-logo img {
    max-height: 50px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo {
    width: 100px;
    padding: 10px;
    top: 10px;
    right: 10px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo img {
    max-height: 50px;
  }
}
@media (max-width: 480px) {
  .single-event .single-event-hero .event-venue-logo {
    width: 80px;
    padding: 8px;
    top: 10px;
    right: 10px;
  }
  .single-event .single-event-hero .event-venue-logo img {
    max-height: 40px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo {
    width: 80px;
    padding: 8px;
    top: 10px;
    right: 10px;
  }
  .single-event .single-event-header .container .header-content .event-venue-logo img {
    max-height: 40px;
  }
}

/*# sourceMappingURL=single.css.map */
