
/* Letter Boxed Game - Page & Layout Styles */

:root {
  --pink-bg: #ff003285;
  --pink-button: #fb3a6e;
  --pink-button-hover: #cb5171;
  --text-color: #333333;
  --link-color: #0066cc;
  --border-color: #e0e0e0;
  --green-score: #0eb16e;
  --blue-selected: #4A86E8;
  --green-used: #34A853;
  --light-bg: #F8F9FA;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

/* ==================== PRIMARY HEADER ==================== */
.primary-header {
  background-color: white;
  border-bottom: 2px solid var(--border-color);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.header-logo img {
  aspect-ratio: 4 / 1; /* width / height */
  width: 160px;
  height: auto;
  border-radius: 0.5rem;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--pink-button);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo-text:hover {
  color: var(--pink-button-hover);
}

.primary-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.primary-nav a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.primary-nav a:hover {
  color: var(--pink-button);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.dropdown-toggle:hover {
  color: var(--pink-button);
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  min-width: 200px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: var(--light-bg);
  color: var(--pink-button);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
}

/* ==================== SECONDARY HEADER ==================== */
.secondary-header {
  background-color: var(--light-bg);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.mode-btn {
  background-color: white;
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  color: var(--text-color);
  display: inline-block;
}

.mode-btn:hover {
  background-color: #f5f5f5;
}

.mode-btn.active {
  background-color: var(--pink-button);
  border-color: var(--pink-button);
  color: white;
}

.stats-icon {
  font-size: 16px;
}

/* ==================== GAME SECTION ==================== */
#root {
  min-height: 500px;
  background-color: var(--pink-bg);
}

/* ==================== HOW TO PLAY SECTION ==================== */
.how-to-play-section {
  padding: 60px 40px;
  background-color: white;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.step-number {
  display: inline-block;
  background-color: var(--pink-button);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
  padding: 60px 40px;
  background-color: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.feature-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: 60px 40px;
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--pink-button);
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

.faq-answer p {
  line-height: 1.6;
  color: #666;
  font-size: 14px;
}

/* ==================== FOOTER ==================== */
.main-footer {
  background-color:#fff5f7;
  color: white;
  padding: 40px 40px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--pink-button) ;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: var(--pink-button);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

/* ==================== INFO SECTIONS (About, Contact, Legal) ==================== */
.info-section {
  padding: 60px 40px;
  background-color: white;
}

.info-section.light-bg {
  background-color: var(--light-bg);
}

.info-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p,
.contact-content p {
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Contact Section */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.contact-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.info-section.light-bg .contact-card {
  background: white;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.contact-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Legal Content */
.legal-content {
  line-height: 1.8;
  color: #666;
}

.legal-content p {
  margin-bottom: 15px;
}

.legal-content h3 {
  color: var(--text-color);
  font-size: 20px;
  margin: 25px 0 15px;
}

.legal-content p:first-child {
  color: #999;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 25px;
}

/* ==================== SEO CONTENT ==================== */
.seo-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  color: var(--text-color);

}

.seo-content h1, .seo-content h2 {
  margin-bottom: 20px;
}

.seo-content p {
  margin-bottom: 16px;
}

.seo-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.seo-content li {
  margin-bottom: 8px;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Large Desktop - 1400px to 1600px */
@media (max-width: 1600px) and (min-width: 1401px) {
  .primary-header {
    padding: 15px 50px;
  }
  
  .secondary-header {
    padding: 10px 50px;
  }
  
  .steps-container,
  .features-grid {
    max-width: 1400px;
  }
}

/* Desktop - 1200px to 1400px */
@media (max-width: 1400px) and (min-width: 1201px) {
  .primary-header {
    padding: 15px 40px;
  }
  
  .steps-container,
  .features-grid {
    max-width: 1200px;
  }
}

/* Medium Desktop - 992px to 1200px */
@media (max-width: 1200px) and (min-width: 993px) {
  .primary-header {
    padding: 15px 35px;
  }
  
  .secondary-header {
    padding: 10px 35px;
  }
  
  .primary-nav {
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Landscape - 768px to 992px */
@media (max-width: 992px) and (min-width: 769px) {
  .primary-header {
    padding: 15px 30px;
  }
  
  .secondary-header {
    padding: 10px 30px;
  }
  
  .primary-nav {
    gap: 15px;
  }
  
  .primary-nav a,
  .dropdown-toggle {
    font-size: 14px;
  }
  
  .how-to-play-section,
  .features-section,
  .faq-section,
  .info-section {
    padding: 50px 30px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait - 600px to 768px */
@media (max-width: 768px) {
  .primary-header {
    padding: 15px 20px;
  }

  .primary-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    align-items: flex-start;
    z-index: 999;
  }

  .primary-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-nav a,
  .dropdown-toggle {
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    margin-top: 0;
    padding-left: 20px;
  }

  .secondary-header {
    padding: 10px 20px;
    gap: 10px;
  }
  
  .mode-btn {
    padding: 7px 15px;
    font-size: 13px;
  }

  .how-to-play-section,
  .features-section,
  .faq-section,
  .info-section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .steps-container,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .main-footer {
    padding: 30px 20px 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
    
  }
  .social-icons {
    justify-content:center ;
  }
}

/* Mobile Large - 480px to 600px */
@media (max-width: 600px) and (min-width: 481px) {
  .logo-text {
    font-size: 22px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .step-card,
  .feature-card {
    padding: 25px;
  }
  
  .step-icon,
  .feature-icon,
  .contact-icon {
    font-size: 36px;
  }
  
  .faq-question {
    padding: 15px;
    font-size: 15px;
  }
  .social-icons {
    justify-content:center ;
  }
}

/* Mobile Medium - 400px to 480px */
@media (max-width: 480px) {
  .logo-text {
    font-size: 20px;
  }

  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .mode-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .step-card,
  .feature-card,
  .contact-card {
    padding: 20px;
  }
  
  .step-icon {
    font-size: 40px;
  }
  
  .feature-icon,
  .contact-icon {
    font-size: 32px;
  }
  
  .step-title,
  .feature-title {
    font-size: 16px;
  }
  
  .step-description,
  .feature-description {
    font-size: 13px;
  }
  
  .faq-question {
    padding: 15px;
    font-size: 14px;
  }
  
  .faq-answer p {
    font-size: 13px;
  }
  
  .how-to-play-section,
  .features-section,
  .faq-section,
  .info-section {
    padding: 30px 15px;
  }
  
  .main-footer {
    padding: 25px 15px 15px;
  }
  
  .footer-section h3 {
    font-size: 16px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  .social-icons {
    justify-content:center ;
  }
}

/* Mobile Small - 320px to 400px */
@media (max-width: 400px) and (min-width: 321px) {
  .primary-header {
    padding: 12px 15px;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  .mobile-menu-toggle {
    font-size: 22px;
  }
  
  .secondary-header {
    padding: 8px 15px;
    gap: 8px;
  }
  
  .mode-btn {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .section-subtitle {
    font-size: 13px;
  }
  
  .step-card,
  .feature-card,
  .contact-card {
    padding: 18px;
  }
  
  .step-icon,
  .feature-icon {
    font-size: 36px;
  }
  
  .step-number {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 14px;
  }
  
  .step-title,
  .feature-title,
  .contact-card h3 {
    font-size: 15px;
  }
  
  .step-description,
  .feature-description,
  .contact-card p {
    font-size: 12px;
  }
  
  .how-to-play-section,
  .features-section,
  .faq-section,
  .info-section {
    padding: 25px 12px;
  }
  
  .steps-container,
  .features-grid {
    gap: 20px;
  }
  
  .faq-question {
    padding: 12px;
    font-size: 13px;
  }
  
  .faq-icon {
    font-size: 18px;
  }
  
  .legal-content h3 {
    font-size: 18px;
  }
  
  .legal-content p,
  .about-content p,
  .contact-content p {
    font-size: 13px;
  }
  .social-icons {
    justify-content:center ;
  }
}

/* Mobile Extra Small - 200px to 320px */
@media (max-width: 320px) {
  .primary-header {
    padding: 10px 12px;
  }
  
  .logo-text {
    font-size: 16px;
  }
  
  .mobile-menu-toggle {
    font-size: 20px;
  }
  
  .secondary-header {
    padding: 8px 12px;
    gap: 6px;
  }
  
  .mode-btn {
    padding: 5px 8px;
    font-size: 10px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .section-subtitle {
    font-size: 12px;
    margin-bottom: 25px;
  }
  
  .step-card,
  .feature-card,
  .contact-card {
    padding: 15px;
  }
  
  .step-icon,
  .feature-icon,
  .contact-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .step-number {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 13px;
  }
  
  .step-title,
  .feature-title,
  .contact-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .step-description,
  .feature-description,
  .contact-card p {
    font-size: 11px;
    line-height: 1.5;
  }
  
  .how-to-play-section,
  .features-section,
  .faq-section,
  .info-section {
    padding: 20px 10px;
  }
  
  .steps-container,
  .features-grid {
    gap: 15px;
  }
  
  .faq-question {
    padding: 10px;
    font-size: 12px;
  }
  
  .faq-answer p {
    font-size: 11px;
  }
  
  .faq-icon {
    font-size: 16px;
  }
  
  .main-footer {
    padding: 20px 10px 12px;
  }
  
  .footer-section h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .footer-links a,
  .footer-bottom {
    font-size: 11px;
  }
  
  .social-icons {
    gap: 10px;
    justify-content:center ;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .legal-content h3 {
    font-size: 16px;
    margin: 20px 0 12px;
  }
  
  .legal-content p,
  .about-content p,
  .contact-content p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
}

/*List */
/* === Bullet Points === */
.bl-key-points {
  list-style: none;
  margin-top: 0.5rem;
  padding-left: 0;
}

.bl-key-points li {
  text-align: left;
  color: var(--text-color);
  margin-top:5px;
  margin-bottom:5px;
}

.bl-arrow {
  color: var(--pink-button);
  font-size: 1.1em;
  margin-right: 6px;
  display: inline-block;
  transform: translateY(1px);
}

.bl-key-points li strong {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
  /*Blog Archive Page Section Starts*/
  
  /* Blog Section Container */
.lb-blog-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Blog Title */
.lb-blog-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin:30px auto;
  color: #1e293b;
}

/* Grid container for blog posts */
.lb-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* 2 columns for medium screens */
@media (min-width: 568px) {
  .lb-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
}

/* 3 columns for large screens */
@media (min-width: 900px) {
  .lb-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Post Card */
.lb-post-card {
  display: none; /* Hidden by default */
  flex-direction: column;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-top: 4px solid #f57f95;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lb-post-card.visible {
  display: flex; /* Show when made visible via JS */
}

.lb-post-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.08),
    0 0 0 4px rgba(8, 171, 177, 0.08);
}

/* Image Wrapper */
.lb-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.lb-post-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  border-radius: 12px 12px 0 0;
}

/* Post Content */
.lb-post-content {
  padding: 20px;
  background-color: #feedf0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lb-post-content a{
    text-decoration: none;
}

.lb-post-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.lb-post-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.4;
}

.lb-post-description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Read More Button */
.read-more {
  align-self: flex-start;
  padding: 10px 20px;
  background: linear-gradient(to right, #f57f95, #ff345a);
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.3s ease;
  width:121px;
  margin:0px auto;
}

.read-more:hover {
  background: linear-gradient(to right, #853d4a, #ff345a);
}

/* Load More Button */
.load-more-btn {
  display: block;
  margin: 40px auto 0;
  padding: 14px 40px;
  background:linear-gradient(to right, #f57f95, #ff345a);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.load-more-btn:hover {
  background: linear-gradient(to right, #853d4a, #ff345a);
}
  
  /*Blog Archive Page Section Ends*/
   /* Single Blog Section Styles  */

/* === Layout Wrapper === */
.lb-contact-wrapper {
  max-width: 1100px;
  margin: 1.5rem auto;
  padding: 0.5rem 1rem;
}

/* === Featured Image === */
.lb-bl-featured-image-wrapper {
  width: 65%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  margin: 2rem auto;
}

.lb-featured-image,
.lb-images {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.lb-images {
  width: 60%;
  margin: 0 auto;
}

/* === Main Content === */
.lb-p-content {
  padding: 2rem;
  background-color: var(--light-bg);
  border-top: 2px solid var(--pink-button);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0.5rem;
}

/* === Section Header === */
.lb-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.lb-section-header {
  line-height: 1.8;
}

.lb-section-header h1 {
  font-size: 2rem;
  color: var(--pink-button);
  margin-bottom: 30px;
}

.lb-section-description {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
}

/* === Content Blocks === */
.lb-content-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.lb-content-text {
  width: 100%;
}

.lb-content-text h2 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  color: var(--text-color);
}

.lb-content-text h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: var(--text-color);
}

.lb-content-text h4 {
  font-size: 1rem;
  margin: 1.5rem 0;
  color: var(--text-color);
}

.lb-content-text p {
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.lb-content-text p a {
  color: var(--pink-button);
  text-decoration: none;
  font-weight: 600;
}

/* === Bullet Points === */
.lb-key-points {
  list-style: none;
  margin-top: 0.5rem;
  padding-left: 0;
}

.lb-key-points li {
  text-align: left;
  color: var(--text-color);
  margin-top: 5px;
  margin-bottom: 5px;
}

.lb-arrow {
  color: var(--pink-button);
  font-size: 1.1em;
  margin-right: 6px;
  display: inline-block;
  transform: translateY(1px);
}

.lb-key-points li strong {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* === Table Wrapper === */
.lb-contact-table-wrapper {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto;
}

/* === Table Styling (Desktop) === */
.lb-contact-table {
  width: 90%;
  border-collapse: collapse;
  background: var(--light-bg);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 0.5rem;
  overflow: hidden;
  font-size: 0.875rem;
  text-align: center;
  margin: 30px auto;
}

/* === Table Header === */
.lb-contact-table thead {
  background-color: var(--pink-button);
  color: #ffffff;
}

.lb-contact-table thead th {
  padding: 1rem;
  font-weight: 600;
  text-align: center;
}

/* === Table Body === */
.lb-contact-table tbody tr:nth-child(even) {
  background-color: var(--light-bg);
}

.lb-contact-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.lb-contact-table tbody tr:hover {
  background-color: var(--pink-bg);
}

.lb-contact-table tbody td {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-color);
}

/* === Links inside Table === */
.lb-contact-table a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
}

/* === Mobile Responsive Table === */
@media (max-width: 520px) {
  .lb-bl-featured-image-wrapper {
    width: 85%;
  }

  .lb-contact-table thead {
    display: none;
  }

  .lb-contact-table,
  .lb-contact-table tbody,
  .lb-contact-table tr,
  .lb-contact-table td {
    display: block;
    width: 100%;
    background-color: #ffffff;
  }

  .lb-contact-table tr {
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    overflow: hidden;
  }

  .lb-contact-table td {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.875rem;
  }

  .lb-contact-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--pink-button);
    flex-basis: 50%;
    text-align: left;
    font-size: 0.875rem;
  }

  .lb-contact-table td:last-child {
    border-bottom: none;
  }
}

/* === Utility Classes === */
.p-content a,
.lb-p-content a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
}

.b-text-underline {
  text-decoration: underline dashed var(--pink-button);
  text-decoration-thickness: 2px;
}
/*Single Post Content Ends*/

/*List Style*/
   .custom-list {
  list-style: none; /* remove default bullets */
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 28px; /* space for the icon */
  margin-bottom: 12px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="%23fb3a6e" viewBox="0 0 512 512"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"/></svg>') no-repeat center;
  background-size: contain;
}
/*List Style Ends*/

/* === Table Wrapper === */
.bl-contact-table-wrapper {
  display: flex;
  justify-content: center;
  /*width: 100%;*/
  margin: 20px auto;
}

/* === Table Styling (Desktop) === */
.bl-contact-table {
  width: 90%;
  /*max-width: 800px;*/
  border-collapse: collapse;
  background: var(--light-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.95rem;
  text-align: center;
}

/* === Table Header === */
.bl-contact-table thead {
  background-color: var(--pink-bg);
  color: #ffffff;
  text-align: left;
}

.bl-contact-table thead th {
  padding: 14px 16px;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
}

/* === Table Body === */
.bl-contact-table tbody tr:nth-child(even) {
  background-color: var(--light-bg);
}

.bl-contact-table tbody tr:nth-child(odd) {
  background-color: #ededed; 
}

.bl-contact-table tbody tr:hover {
  background-color: #fff4d4; 
}

.bl-contact-table tbody td {
  padding: 14px 16px;
  border-top: 1px solid var(--border-color);
  color: var(--text-color);
}

/* === Link Styling (if any inside) === */
.bl-contact-table a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: bold;
}

/* === Mobile Responsive Styling === */
@media (max-width: 520px) {
  .bl-contact-table thead {
    display: none;
  }

  .bl-contact-table,
  .bl-contact-table tbody,
  .bl-contact-table tr,
  .bl-contact-table td {
    display: block;
    width: 100%;
    background-color: var(--light-bg);
  }

  .bl-contact-table tr {
    margin-bottom: 15px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }

  .bl-contact-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    font-size: 0.9rem;
  }

  .bl-contact-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #654900; 
    flex-basis: 50%;
    text-align: left;
    font-size: 0.85rem;
  }

  .bl-contact-table td:last-child {
    border-bottom: none;
  }

  /* Ensure mobile background stays consistent */
  .bl-contact-table tbody tr:nth-child(even),
  .bl-contact-table tbody tr:nth-child(odd) {
    background-color: var(--light-bg) !important;
  }

  .bl-contact-table tbody tr:hover {
    background-color: #ffd5de; 
  }
}

.p-content a, .bl-p-content a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
}

.b-text-underline{
    text-decoration: underline dashed brown;
    text-decoration-thickness: 2px;
}
