/* =============================================================================
   blog-public.css — LetOutAgree Public Blog Styles
   Replaces the inline <style> block previously injected via blog_editor_styles.php
   ============================================================================= */

/* ── Blog Hero ─────────────────────────────────────────────────────────────── */
.blog-hero {
  background: linear-gradient(135deg, #013493 0%, #0a56c8 100%);
  padding: 48px 0 40px;
  color: #fff;
}

.blog-hero h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
}

.blog-hero p {
  font-size: 16px;
  opacity: 0.85;
  margin: 0;
}

/* ── Layout ────────────────────────────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-xl) 0;
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Post Cards ────────────────────────────────────────────────────────────── */
.blog-card {
  display: flex;
  gap: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all 0.25s var(--ease-out);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(1, 52, 147, .08);
  transform: translateY(-2px);
}

.blog-card-img {
  width: 200px;
  min-height: 140px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  flex-shrink: 0;
}

.blog-card-body {
  flex: 1;
  min-width: 0;
}

.blog-card-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-text);
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  gap: 12px;
}

@media (max-width: 640px) {
  .blog-card {
    flex-direction: column;
  }

  .blog-card-img {
    width: 100%;
    height: 180px;
  }
}

/* ── Featured Card ─────────────────────────────────────────────────────────── */
.blog-featured-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: block;
  min-height: 260px;
  transition: all 0.3s var(--ease-out);
}

.blog-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}

.blog-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.blog-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
  padding: 40px 24px 24px;
}

.blog-featured-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}

.blog-featured-overlay p {
  font-size: 13px;
  opacity: 0.85;
  margin: 0;
}

/* ── Sidebar Widgets ───────────────────────────────────────────────────────── */
.blog-sidebar-widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.blog-sidebar-widget h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

/* ── Search ────────────────────────────────────────────────────────────────── */
.blog-search-form {
  display: flex;
  gap: 8px;
}

.blog-search-form input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: inherit;
}

.blog-search-form button {
  padding: 9px 16px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}

/* ── Breadcrumbs ───────────────────────────────────────────────────────────── */
.blog-breadcrumb {
  margin-bottom: var(--space-lg);
  max-width: 100%;
  box-sizing: border-box;
}

.breadcrumb {
  display: flex;
  gap: 6px 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  flex-wrap: wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  margin-right: 8px;
  color: var(--color-text-muted);
}

.breadcrumb-item a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--color-text-muted);
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ── Post Detail ───────────────────────────────────────────────────────────── */
.blog-post-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--color-text);
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.featured-post-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  margin: 0 auto 24px auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-sizing: border-box;
}

.post-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
  box-sizing: border-box;
}

.post-content p,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.post-content li {
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.post-content h2 {
  font-size: clamp(18px, 4vw, 24px);
  margin: 32px 0 12px;
  color: var(--color-text);
}

.post-content h3 {
  font-size: clamp(16px, 3.5vw, 20px);
  margin: 28px 0 10px;
  color: var(--color-text);
}

.post-content p {
  margin: 0 0 16px;
}

.post-content img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: var(--radius-lg);
  margin: 16px auto;
  object-fit: cover;
  box-sizing: border-box;
}

.post-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(1, 52, 147, .03);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
}

.post-content ul,
.post-content ol {
  padding-left: 24px;
  margin: 0 0 16px;
}

.post-content li {
  margin-bottom: 6px;
}

.post-content table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse;
  margin: 16px 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.post-content th,
.post-content td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  text-align: left;
  font-size: 14px;
  min-width: 120px;
}

.post-content th {
  background: var(--color-surface-2);
  font-weight: 600;
}

.post-content pre,
.post-content code {
  max-width: 100% !important;
  white-space: pre-wrap !important;
  word-break: break-word !important;
  overflow-x: auto;
}

/* ── CTA Boxes ─────────────────────────────────────────────────────────────── */
.cta-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-xl);
  margin: 28px 0;
  border: 1px solid;
}

.cta-rental {
  background: rgba(1, 52, 147, .04);
  border-color: rgba(1, 52, 147, .15);
}

.cta-credits {
  background: rgba(239, 115, 5, .04);
  border-color: rgba(239, 115, 5, .15);
}

.cta-support {
  background: rgba(16, 185, 129, .04);
  border-color: rgba(16, 185, 129, .15);
}

.cta-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.cta-body h3 {
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--color-text);
}

.cta-body p {
  font-size: 14px;
  margin: 0 0 12px;
  color: var(--color-text-secondary);
}

/* ── Tags ──────────────────────────────────────────────────────────────────── */
.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-surface-2);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.2s;
}

.blog-tag:hover {
  background: rgba(1, 52, 147, .08);
  color: var(--color-primary);
}

/* ── Share Buttons ─────────────────────────────────────────────────────────── */
.share-buttons {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}

.share-btn:hover {
  opacity: 0.85;
}

.share-btn--twitter {
  background: #1da1f2;
}

.share-btn--whatsapp {
  background: #25d366;
}

.share-btn--linkedin {
  background: #0077b5;
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-section {
  margin: 32px 0;
}

.faq-section h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.faq-section details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-section summary {
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  background: var(--color-surface);
}

.faq-section details[open] summary {
  border-bottom: 1px solid var(--color-border);
}

.faq-section details p {
  padding: 14px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* ── Like Button ───────────────────────────────────────────────────────────── */
.like-section {
  margin: 20px 0;
}

#like-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}

#like-btn:hover {
  border-color: #ef4444;
}

#like-btn.liked {
  background: #fef2f2;
  border-color: #ef4444;
  color: #ef4444;
}

#like-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Comments ──────────────────────────────────────────────────────────────── */
.comments-section {
  margin: 32px 0;
}

.comments-section h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.comment {
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  background: var(--color-surface);
}

.comment strong {
  font-size: 14px;
}

.comment span {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-left: 8px;
}

.comment p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

#comment-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  min-height: 80px;
  box-sizing: border-box;
}

#comment-form button {
  margin-top: 8px;
  padding: 10px 24px;
}

#comment-msg {
  margin-top: 8px;
  font-size: 13px;
}

/* ── Legal Disclaimer ──────────────────────────────────────────────────────── */
.blog-disclaimer, .legal-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(1, 52, 147, 0.04) 0%, rgba(10, 86, 200, 0.02) 100%);
  border: 1px solid rgba(1, 52, 147, 0.12);
  border-left: 5px solid #013493;
  padding: 18px 20px;
  border-radius: 12px;
  margin: 28px 0;
  box-shadow: 0 4px 16px -2px rgba(1, 52, 147, 0.05);
}

.blog-disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(1, 52, 147, 0.08);
  color: #013493;
  border-radius: 10px;
  flex-shrink: 0;
}

.blog-disclaimer-icon svg {
  width: 22px;
  height: 22px;
}

.blog-disclaimer-content {
  flex: 1;
}

.blog-disclaimer-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #013493;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.blog-disclaimer-text, .legal-disclaimer p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #334155;
  margin: 0 !important;
}

/* ── Related Posts ─────────────────────────────────────────────────────────── */
.related-posts {
  margin: 40px 0;
}

.related-posts h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.related-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
}

.related-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.related-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.related-card-body {
  padding: 14px;
}

.related-card-body h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.35;
}

.related-card-body p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

/* ── Pagination ────────────────────────────────────────────────────────────── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: var(--space-lg) 0;
}

.page-btn {
  padding: 8px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.2s;
}

.page-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.page-info {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ── Popular Posts ─────────────────────────────────────────────────────────── */
.popular-post-item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--color-border);
}

.popular-post-item:last-child {
  border-bottom: none;
}

.popular-post-item:hover .popular-post-title {
  color: var(--color-primary);
}

.popular-post-img {
  width: 60px;
  height: 45px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.popular-post-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  transition: color 0.2s;
}

.popular-post-views {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ── Category Sidebar List ─────────────────────────────────────────────────── */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 2px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 13px;
  text-decoration: none;
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.category-list a:hover {
  background: rgba(1, 52, 147, .04);
  color: var(--color-primary);
}

/* ── Admin Shared Sidebar / Form Styles ────────────────────────────────────── */
.blog-editor-form {
  width: 100%;
}

.blog-editor-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 900px) {
  .blog-editor-grid {
    grid-template-columns: 1fr;
  }
}

.blog-editor-main {
  min-width: 0;
}

.blog-editor-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.blog-sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}

.blog-sidebar-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-text);
}

.blog-field {
  margin-bottom: 12px;
}

.blog-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.blog-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: inherit;
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.blog-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(1, 52, 147, .08);
}

.blog-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-tag-check {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  padding: 4px 10px;
  background: var(--color-surface-2);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s;
}

.blog-tag-check:hover {
  background: rgba(1, 52, 147, .06);
}

.blog-tag-check input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

/* ── Quill Content Overrides (legacy support) ──────────────────────────────── */
.post-content .ql-align-center {
  text-align: center;
}

.post-content .ql-align-right {
  text-align: right;
}

.post-content .ql-align-justify {
  text-align: justify;
}

.post-content .ql-size-small {
  font-size: 0.75em;
}

.post-content .ql-size-large {
  font-size: 1.5em;
}

.post-content .ql-size-huge {
  font-size: 2.5em;
}

.post-content .ql-font-serif {
  font-family: Georgia, 'Times New Roman', serif;
}

.post-content .ql-font-monospace {
  font-family: Monaco, 'Courier New', monospace;
}

.post-content iframe.ql-video {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  margin: 16px 0;
}

@media (max-width: 640px) {
  .post-content iframe.ql-video {
    height: 250px;
  }
}

/* ── Mobile & Tablet Responsiveness ────────────────────────────────────────── */
@media (max-width: 768px) {
  .blog-hero {
    padding: 32px 0 28px;
  }

  .blog-hero h1 {
    font-size: 24px;
    line-height: 1.3;
  }

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

  .blog-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    width: 100%;
    max-width: 100%;
  }

  .blog-layout>article,
  .blog-layout>aside {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .blog-card {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .blog-card-img {
    width: 100%;
    height: 180px;
  }

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

  .blog-card-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }

  .blog-card-meta {
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 11px;
  }

  .blog-featured-card {
    min-height: 220px;
  }

  .blog-featured-overlay {
    padding: 24px 16px 16px;
  }

  .blog-featured-overlay h3 {
    font-size: 17px;
  }

  .post-content {
    font-size: 15px;
    line-height: 1.75;
  }

  .post-content h2 {
    font-size: 20px;
    margin: 24px 0 10px;
  }

  .post-content h3 {
    font-size: 17px;
    margin: 20px 0 8px;
  }

  .post-content pre {
    max-width: 100%;
    overflow-x: auto;
    font-size: 13px;
    padding: 12px;
    border-radius: var(--radius-md);
  }

  .post-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cta-box {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .cta-box .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .share-buttons {
    flex-wrap: wrap;
    gap: 8px;
  }

  .share-btn {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .blog-pagination {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .page-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .share-btn {
    flex: 1 1 100%;
  }

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

  .blog-card-img {
    height: 160px;
  }

  .blog-search-form {
    flex-direction: column;
  }

  .blog-search-form button {
    width: 100%;
  }
}

/* ── Admin Dashboard Mobile Table Rules ────────────────────────────────────── */
.dash-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dash-table {
  min-width: 650px;
}

/* ── Premium Sidebar High-CTR CTA Card Component ───────────────────────────── */
.blog-cta-card {
  position: relative;
  background: linear-gradient(165deg, rgba(4, 20, 62, 0.78) 0%, rgba(1, 38, 115, 0.88) 100%),
    url('/assets/images/blog_cta_bg.webp') center/cover no-repeat;
  color: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 24px 20px;
  margin-bottom: var(--space-md);
  box-shadow: 0 20px 50px rgba(1, 30, 90, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-sizing: border-box;
}

.blog-cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(239, 115, 5, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Header Row Badges - Ultra Clear & High Contrast */
.blog-cta-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.blog-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ef7305;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(239, 115, 5, 0.5);
  white-space: nowrap;
}

.blog-cta-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  box-shadow: none;
  color: #ffc107;
  padding: 0;
  font-size: 12px;
  font-weight: 800;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

/* Title & Subtitle */
.blog-cta-title-group {
  margin-bottom: 18px;
  text-align: center;
}

.blog-cta-card h3 {
  font-size: 23px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.blog-cta-card p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Feature List - Centered Bullet Points with Increased Font Size */
.blog-cta-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.blog-cta-features li {
  font-size: 14.5px;
  color: #ffc107;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  width: fit-content;
}

.blog-cta-features li span.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  font-size: 21px;
  font-weight: 900;
  flex-shrink: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

/* White Button with Premium Blue Text */
.blog-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: #ffffff;
  color: #013493 !important;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: var(--radius-xl);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.25s var(--ease-out);
  box-sizing: border-box;
  text-align: center;
}

.blog-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  background: #f8fafc;
  color: #012468 !important;
}

.blog-cta-subtext {
  font-size: 11.5px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}