/* ============================================
   BLOG CATEGORY PAGE — Sunshine Theme
   ============================================ */

/* ---------- Container ---------- */
.blog-sunshine-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Hero Section ---------- */
.blog-sunshine-hero {
  background: linear-gradient(180deg, #FFF9F0 0%, #FFE4CC 100%);
  text-align: center;
  padding: 48px 24px 40px;
  margin-bottom: 32px;
}

.blog-sunshine-hero-title {
  font-family: 'Baloo 2', cursive;
  font-size: 36px;
  font-weight: 800;
  color: #442E66;
  margin: 0 0 12px;
  line-height: 1.2;
}

.blog-sunshine-hero-description {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #6B6B6B;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.blog-sunshine-hero-count {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #442E66;
  background: #FFFFFF;
  border: 2px solid #FFE4CC;
  border-radius: 20px;
  padding: 6px 16px;
}

/* ---------- Grid ---------- */
.blog-sunshine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- Card ---------- */
.blog-sunshine-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 2px solid #FFE4CC;
  box-shadow: 4px 4px 16px rgba(68, 46, 102, 0.12);
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.blog-sunshine-card:hover {
  transform: translateY(-6px);
  border-color: #FFB606;
  box-shadow: 6px 6px 24px rgba(68, 46, 102, 0.18);
}

/* ---------- Card Image ---------- */
.blog-sunshine-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.blog-sunshine-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Card Badge ---------- */
.blog-sunshine-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FFB606;
  color: #FFFFFF;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 1;
}

/* ---------- Card Placeholder (no featured image) ---------- */
.blog-sunshine-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE4CC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Card Body ---------- */
.blog-sunshine-card-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-sunshine-card-header {
  margin-bottom: 8px;
}

.blog-sunshine-card-title {
  font-family: 'Baloo 2', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #442E66;
  margin: 0;
  line-height: 1.3;
}

.blog-sunshine-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-sunshine-card-title a:hover {
  color: #FFB606;
}

.blog-sunshine-card-excerpt {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #2D2D2D;
  line-height: 1.6;
  margin: 0 0 16px;
}

.blog-sunshine-card-excerpt p {
  margin: 0;
}

.blog-sunshine-card-readmore {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFB606;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: auto;
}

.blog-sunshine-card-readmore:hover {
  color: #442E66;
}

.blog-sunshine-card-readmore-arrow {
  margin-left: 4px;
}

/* ---------- Card Footer ---------- */
.blog-sunshine-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-top: 1px solid #FFE4CC;
}

.blog-sunshine-card-author {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: #6B6B6B;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-sunshine-card-avatar {
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.blog-sunshine-card-author-name {
  font-weight: 700;
  color: #2D2D2D;
}

.blog-sunshine-card-date {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: #6B6B6B;
}

/* ---------- Pagination ---------- */
.blog-sunshine-pagination {
  padding: 40px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-sunshine-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-sunshine-pagination .nav-links a.page-numbers,
.blog-sunshine-pagination .nav-links span.page-numbers {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-sunshine-pagination .nav-links a.page-numbers {
  color: #442E66;
  background: #FFFFFF;
  border: 2px solid #FFE4CC;
}

.blog-sunshine-pagination .nav-links a.page-numbers:hover {
  background: #FFB606;
  border-color: #FFB606;
  color: #FFFFFF;
}

.blog-sunshine-pagination .nav-links span.page-numbers.current {
  background: #FFB606;
  border: 2px solid #FFB606;
  color: #FFFFFF;
}

.blog-sunshine-pagination .nav-links span.page-numbers.dots {
  color: #6B6B6B;
  border: none;
  background: none;
}

.blog-sunshine-pagination .nav-links a.prev,
.blog-sunshine-pagination .nav-links a.next {
  padding: 0 16px;
}

/* ---------- Empty State ---------- */
.blog-sunshine-empty {
  text-align: center;
  padding: 64px 24px;
  max-width: 480px;
  margin: 0 auto;
}

.blog-sunshine-empty-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.blog-sunshine-empty-title {
  font-family: 'Baloo 2', cursive;
  font-size: 24px;
  font-weight: 700;
  color: #442E66;
  margin: 0 0 12px;
}

.blog-sunshine-empty-text {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #6B6B6B;
  line-height: 1.6;
  margin: 0 0 24px;
}

.blog-sunshine-empty-link {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  background: #FFB606;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.blog-sunshine-empty-link:hover {
  background: #442E66;
}

/* ---------- Responsive: Tablet (992px) ---------- */
@media (max-width: 992px) {
  .blog-sunshine-hero-title {
    font-size: 30px;
  }

  .blog-sunshine-hero {
    padding: 40px 20px 32px;
  }
}

/* ---------- Responsive: Small Tablet (768px) ---------- */
@media (max-width: 768px) {
  .blog-sunshine-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-sunshine-container {
    padding: 0 16px;
  }

  .blog-sunshine-hero-title {
    font-size: 26px;
  }

  .blog-sunshine-hero-description {
    font-size: 15px;
  }

  .blog-sunshine-pagination {
    padding: 32px 0;
  }
}

/* ---------- Responsive: Mobile (480px) ---------- */
@media (max-width: 480px) {
  .blog-sunshine-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-sunshine-container {
    padding: 0 12px;
  }

  .blog-sunshine-hero {
    padding: 32px 16px 24px;
    margin-bottom: 24px;
  }

  .blog-sunshine-hero-title {
    font-size: 22px;
  }

  .blog-sunshine-hero-description {
    font-size: 14px;
  }

  .blog-sunshine-card-body {
    padding: 16px;
  }

  .blog-sunshine-card-title {
    font-size: 18px;
  }

  .blog-sunshine-card-footer {
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog-sunshine-pagination {
    padding: 24px 0;
  }

  .blog-sunshine-pagination .nav-links a.page-numbers,
  .blog-sunshine-pagination .nav-links span.page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}


/* ============================================
   SINGLE POST & COMMENTS — Sunshine Theme
   ============================================ */

/* ---------- Main Container ---------- */
.post-sunshine-main {
  padding-bottom: 60px;
}

/* ---------- Hero Section ---------- */
.post-sunshine-hero {
  width: 100%;
  min-height: 400px !important;
  padding-top: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex !important;
  align-items: flex-end !important;
  overflow: visible;
}

.post-sunshine-hero--no-image {
  background: linear-gradient(135deg, #442E66 0%, #6B4D9A 100%);
  min-height: 300px;
}

.post-sunshine-hero-inner {
  position: relative !important;
  z-index: 1 !important;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px !important;
  text-align: center;
  width: 100%;
}

.post-sunshine-hero-badge {
  display: inline-block;
  background: #FFB606;
  color: #FFFFFF;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.post-sunshine-hero-badge a {
  color: #FFFFFF;
  text-decoration: none;
}

.post-sunshine-hero-badge:hover {
  background: #442E66;
  color: #FFFFFF;
}

.post-sunshine-hero-badge:hover a {
  color: #FFFFFF;
}

.post-sunshine-hero-title {
  font-family: 'Baloo 2', cursive;
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF !important;
  margin: 0 0 16px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.post-sunshine-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #FFFFFF !important;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
}

.post-sunshine-hero-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-sunshine-hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.post-sunshine-hero-author-name {
  font-weight: 700;
}

.post-sunshine-hero-date {
  opacity: 0.9;
}

/* ---------- Content Wrapper ---------- */
.post-sunshine-content-wrapper {
  max-width: 800px;
  margin: -60px auto 0;
  background: #FFFFFF;
  border-radius: 24px;
  border: 2px solid #FFE4CC;
  padding: 40px;
  position: relative;
  z-index: 1;
  box-shadow: 4px 4px 16px rgba(68, 46, 102, 0.12);
}

/* ---------- Content Typography ---------- */
.post-sunshine-content h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 28px;
  font-weight: 700;
  color: #442E66;
  margin: 32px 0 16px;
  line-height: 1.3;
}

.post-sunshine-content h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 700;
  color: #442E66;
  margin: 24px 0 12px;
  line-height: 1.3;
}

.post-sunshine-content p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #2D2D2D;
  line-height: 1.8;
  margin: 0 0 16px;
}

.post-sunshine-content ul,
.post-sunshine-content ol {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #2D2D2D;
  line-height: 1.8;
  margin: 0 0 16px;
  padding-left: 24px;
}

.post-sunshine-content ul li,
.post-sunshine-content ol li {
  margin-bottom: 8px;
}

.post-sunshine-content blockquote {
  border-left: 4px solid #FFB606;
  background: #FFF9F0;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.post-sunshine-content blockquote p {
  margin: 0;
  color: #442E66;
}

.post-sunshine-content a {
  color: #FFB606;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.post-sunshine-content a:hover {
  text-decoration: underline;
}

.post-sunshine-content img {
  border-radius: 16px;
  max-width: 100%;
  height: auto;
}

.post-sunshine-content hr {
  border: none;
  border-top: 2px solid #FFE4CC;
  margin: 32px 0;
}

/* ---------- Tags ---------- */
.post-sunshine-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #FFE4CC;
}

.post-sunshine-tags a {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #442E66;
  background: #FFF9F0;
  border: 1px solid #FFE4CC;
  border-radius: 20px;
  padding: 6px 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.post-sunshine-tags a:hover {
  background: #FFB606;
  border-color: #FFB606;
  color: #FFFFFF;
}

/* ---------- Share ---------- */
.post-sunshine-share {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid #FFE4CC;
  margin-top: 24px;
}

/* ---------- Categories Footer ---------- */
.post-sunshine-categories {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #FFE4CC;
}

.post-sunshine-categories a {
  color: #FFB606;
  text-decoration: none;
  font-weight: 600;
}

.post-sunshine-categories a:hover {
  text-decoration: underline;
}

.post-sunshine-categories-label {
  margin-right: 4px;
}

/* ---------- Page Links ---------- */
.post-sunshine-page-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #FFE4CC;
}

.post-sunshine-page-links span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #442E66;
  background: #FFF9F0;
  border: 1px solid #FFE4CC;
}

/* ---------- Author Box ---------- */
.post-sunshine-author-box {
  background: #FFFFFF;
  border: 2px solid #FFE4CC;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
  box-shadow: 4px 4px 16px rgba(68, 46, 102, 0.12);
}

.post-sunshine-author-box-avatar {
  flex-shrink: 0;
}

.post-sunshine-author-box-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #FFE4CC;
}

.post-sunshine-author-box-name {
  font-family: 'Baloo 2', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #442E66;
  margin: 0 0 8px;
}

.post-sunshine-author-box-bio {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.6;
  margin: 0;
}

.post-sunshine-author-box-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFB606;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-sunshine-author-box-link:hover {
  color: #442E66;
}

/* ---------- Post Navigation ---------- */
.post-sunshine-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
}

.post-sunshine-nav-card {
  background: #FFFFFF;
  border: 2px solid #FFE4CC;
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
  box-shadow: 4px 4px 16px rgba(68, 46, 102, 0.12);
}

.post-sunshine-nav-card:hover {
  transform: translateY(-4px);
  border-color: #FFB606;
  box-shadow: 6px 6px 24px rgba(68, 46, 102, 0.18);
}

.post-sunshine-nav-placeholder {
  visibility: hidden;
}

.post-sunshine-nav-thumb {
  flex-shrink: 0;
}

.post-sunshine-nav-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.post-sunshine-nav-label {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #6B6B6B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}

.post-sunshine-nav-title {
  font-family: 'Baloo 2', cursive;
  font-size: 16px;
  font-weight: 700;
  color: #442E66;
  line-height: 1.3;
}

/* ---------- Comments Section ---------- */
.comment-sunshine-section {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.comment-sunshine-title {
  font-family: 'Baloo 2', cursive;
  font-size: 28px;
  font-weight: 700;
  color: #442E66;
  margin: 0 0 24px;
}

.comment-sunshine-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-sunshine-card {
  background: #FFFFFF;
  border: 2px solid #FFE4CC;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 4px 4px 16px rgba(68, 46, 102, 0.12);
}

.comment-sunshine-card .children {
  margin-left: 40px;
  margin-top: 16px;
  list-style: none;
  padding: 0;
}

.comment-sunshine-card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-sunshine-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-sunshine-avatar {
  flex-shrink: 0;
}

.comment-sunshine-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #FFE4CC;
}

.comment-sunshine-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.comment-sunshine-author {
  font-family: 'Baloo 2', cursive;
  font-size: 16px;
  font-weight: 700;
  color: #442E66;
}

.comment-sunshine-date {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: #6B6B6B;
}

.comment-sunshine-moderation {
  background: #FFF9F0;
  border: 1px solid #FFE4CC;
  border-radius: 8px;
  padding: 8px 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: #6B6B6B;
  font-style: italic;
}

.comment-sunshine-content {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: #2D2D2D;
  line-height: 1.7;
}

.comment-sunshine-content p {
  margin: 0 0 8px;
}

.comment-sunshine-content p:last-child {
  margin-bottom: 0;
}

.comment-sunshine-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-sunshine-reply a {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFB606;
  text-decoration: none;
  transition: color 0.2s ease;
}

.comment-sunshine-reply a:hover {
  color: #442E66;
}

.comment-sunshine-edit a {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: #6B6B6B;
  text-decoration: none;
}

.comment-sunshine-edit a:hover {
  color: #442E66;
}

/* ---------- Comment Form ---------- */
.comment-sunshine-form {
  background: #FFFFFF;
  border: 2px solid #FFE4CC;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 4px 4px 16px rgba(68, 46, 102, 0.12);
  margin-top: 32px;
}

.comment-sunshine-form label {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #442E66;
  display: block;
  margin-bottom: 6px;
}

.comment-sunshine-form input[type="text"],
.comment-sunshine-form input[type="email"],
.comment-sunshine-form input[type="url"] {
  width: 100%;
  border: 2px solid #FFE4CC;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #2D2D2D;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.comment-sunshine-form input[type="text"]:focus,
.comment-sunshine-form input[type="email"]:focus,
.comment-sunshine-form input[type="url"]:focus {
  border-color: #FFB606;
  outline: none;
}

.comment-sunshine-form textarea {
  width: 100%;
  border: 2px solid #FFE4CC;
  border-radius: 16px;
  padding: 12px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #2D2D2D;
  background: #FFFFFF;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.comment-sunshine-form textarea:focus {
  border-color: #FFB606;
  outline: none;
}

.comment-sunshine-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.comment-sunshine-submit,
#commentform .submit {
  background: #FFB606;
  color: #FFFFFF;
  border: none;
  border-radius: 24px;
  padding: 14px 32px;
  font-family: 'Baloo 2', cursive;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.comment-sunshine-submit:hover,
#commentform .submit:hover {
  background: #e5a405;
  transform: translateY(-2px);
}

.comment-sunshine-form .comment-sunshine-field {
  margin-bottom: 16px;
}

.comment-sunshine-form .comment-sunshine-field-cookies {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}

.comment-sunshine-form .comment-sunshine-field-cookies label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B6B6B;
  margin-bottom: 0;
}

.comment-sunshine-form .comment-sunshine-field-cookies input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #FFB606;
  cursor: pointer;
}

.comment-sunshine-reply-title {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 700;
  color: #442E66;
  margin: 0 0 16px;
}

.comment-sunshine-notes {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: #6B6B6B;
  margin: 0 0 16px;
}

.comment-sunshine-logged-in {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  margin: 0 0 16px;
}

.comment-sunshine-logged-in a {
  color: #FFB606;
  text-decoration: none;
  font-weight: 600;
}

.comment-sunshine-logged-in a:hover {
  text-decoration: underline;
}

.comment-sunshine-form-submit {
  margin-top: 16px;
}

.comment-sunshine-commentform {
  /* WordPress form class - no additional styles needed */
}

/* ---------- Comment Pagination ---------- */
.comment-sunshine-pagination {
  margin-top: 24px;
  text-align: center;
}

.comment-sunshine-pagination-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.comment-sunshine-pagination-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFB606;
  text-decoration: none;
}

.comment-sunshine-pagination-links a:hover {
  color: #442E66;
}

/* ---------- Comment Closed ---------- */
.comment-sunshine-closed {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #6B6B6B;
  text-align: center;
  padding: 16px;
}

/* ---------- Responsive: Tablet (992px) ---------- */
@media (max-width: 992px) {
  .post-sunshine-hero {
    min-height: 320px !important;
    padding-top: 100px;
  }

  .post-sunshine-hero-title {
    font-size: 30px;
  }

  .post-sunshine-content h2 {
    font-size: 24px;
  }

  .post-sunshine-content h3 {
    font-size: 20px;
  }
}

/* ---------- Responsive: Small Tablet (768px) ---------- */
@media (max-width: 768px) {
  .post-sunshine-hero {
    min-height: 260px !important;
    padding-top: 80px;
  }

  .post-sunshine-hero-title {
    font-size: 26px;
  }

  .post-sunshine-hero-inner {
    padding: 32px 20px 60px;
  }

  .post-sunshine-content-wrapper {
    margin-top: -40px;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .post-sunshine-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }

  .post-sunshine-nav {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comment-sunshine-form-grid {
    grid-template-columns: 1fr;
  }

  .comment-sunshine-card .children {
    margin-left: 24px;
  }

  .comment-sunshine-form {
    padding: 24px;
  }
}

/* ---------- Responsive: Mobile (480px) ---------- */
@media (max-width: 480px) {
  .post-sunshine-hero {
    min-height: 220px !important;
    padding-top: 60px;
  }

  .post-sunshine-hero-title {
    font-size: 22px;
  }

  .post-sunshine-hero-inner {
    padding: 24px 16px 32px;
  }

  .post-sunshine-hero-meta {
    font-size: 13px;
    gap: 8px;
  }

  .post-sunshine-hero-avatar {
    width: 32px;
    height: 32px;
  }

  .post-sunshine-content-wrapper {
    margin-top: 0;
    padding: 20px 16px;
    border-radius: 16px;
  }

  .post-sunshine-content h2 {
    font-size: 22px;
  }

  .post-sunshine-content h3 {
    font-size: 18px;
  }

  .post-sunshine-content p {
    font-size: 15px;
  }

  .post-sunshine-author-box {
    padding: 20px;
  }

  .post-sunshine-author-box-img {
    width: 70px;
    height: 70px;
  }

  .post-sunshine-nav-card {
    padding: 16px;
  }

  .post-sunshine-nav-img {
    width: 60px;
    height: 60px;
  }

  .comment-sunshine-section {
    margin-top: 24px;
  }

  .comment-sunshine-title {
    font-size: 22px;
  }

  .comment-sunshine-card {
    padding: 16px;
  }

  .comment-sunshine-card .children {
    margin-left: 16px;
  }

  .comment-sunshine-avatar-img {
    width: 40px;
    height: 40px;
  }

  .comment-sunshine-form {
    padding: 20px 16px;
    border-radius: 16px;
  }
}