/* Blog shared styles */
body { font-family: 'Outfit', sans-serif; background-color: #FFF8F6; color: #1F2937; }
.font-body { font-family: 'Plus Jakarta Sans', sans-serif; }

/* Article prose */
.prose { max-width: 48rem; margin: 0 auto; }
.prose p { color: #4B5563; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.5rem; }
.prose h2 { font-size: 1.75rem; font-weight: 700; color: #111827; margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.35rem; font-weight: 700; color: #111827; margin-top: 2rem; margin-bottom: 0.75rem; }
.prose ul, .prose ol { color: #4B5563; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.5rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: #111827; }
.prose a { color: #E87461; text-decoration: underline; }
.prose blockquote { border-left: 4px solid #E87461; padding-left: 1.25rem; margin: 1.5rem 0; color: #6B7280; font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-family: 'Plus Jakarta Sans', sans-serif; }
.prose th { text-align: left; padding: 0.75rem; border-bottom: 2px solid #E5E7EB; font-weight: 600; color: #111827; font-size: 0.875rem; }
.prose td { padding: 0.75rem; border-bottom: 1px solid #F3F4F6; color: #4B5563; font-size: 0.95rem; }
.prose .source { font-size: 0.8rem; color: #9CA3AF; margin-top: -1rem; margin-bottom: 1.5rem; }

/* Phone mockup */
.phone-mockup {
    width: 220px;
    background: #111827;
    border-radius: 2rem;
    border: 6px solid #111827;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    flex-shrink: 0;
}
.phone-mockup img { width: 100%; display: block; border-radius: 1.6rem; }

/* Phone pair */
.phone-pair {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-start;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

/* Hero banner — hidden, splash images are vertical and crop badly */
.blog-hero { display: none; }

/* Blog card grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #F3F4F6;
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }
.blog-card img { width: 100%; height: 320px; object-fit: cover; object-position: center 20%; }
.blog-card-body { padding: 1.25rem; }
.blog-card-body h3 { font-size: 1.15rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card-body p { font-size: 0.9rem; color: #6B7280; line-height: 1.5; font-family: 'Plus Jakarta Sans', sans-serif; }
.blog-card-body .tag { display: inline-block; font-size: 0.75rem; font-weight: 600; color: #E87461; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }

/* Sticky CTA — body padding so footer isn't hidden behind bar */
body { padding-bottom: 4rem; }

/* Sticky CTA bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transform: translateY(0);
    transition: transform 0.3s;
}
.sticky-cta .cta-text {
    color: #D1D5DB;
    font-size: 0.875rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: none;
}
@media (min-width: 640px) {
    .sticky-cta .cta-text { display: block; }
}
.sticky-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.sticky-cta .cta-btn:hover { opacity: 0.9; }
.sticky-cta .cta-btn-apple { background: #E87461; color: white; }
.sticky-cta .cta-btn-google { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.3); }
