body.blog-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #ffffff;
    color: #1d1d1f;
}

.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-container {
    padding-top: 140px;
    max-width: 740px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 5rem;
    box-sizing: border-box;
}

.section-padding-x {
    padding: 0 1.5rem;
}

.section-header-padding {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.back-hub-wrapper {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.back-hub-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0071e3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.back-hub-link:hover {
    text-decoration: underline;
}

.blog-main-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: #1d1d1f;
    letter-spacing: -0.5px;
}

.blog-meta-text {
    color: #86868b;
    font-size: 0.9rem;
}

h2 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #1d1d1f;
    letter-spacing: -0.3px;
}

p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: #333336;
}

.blog-content-stream {
    background: transparent;
    padding: 0;
}

.blog-cover-wrapper {
    margin-bottom: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.blog-cover-img {
    width: 100%;
    height: auto;
    display: block;
}

.glass-toc {
    background: #f5f5f7;     border-radius: 12px;
    padding: 1.5rem;
    margin: 2.5rem 0;
}

.glass-toc h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #1d1d1f;
}

.glass-toc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-left: 0;
    margin: 0;
}

.glass-toc a {
    color: #0071e3;
    text-decoration: none;
    font-weight: 500;
}

.glass-toc a:hover {
    text-decoration: underline;
}

.info-inset-box {
    border-left: 4px solid #d9383a;     padding-left: 1.5rem;
    margin: 2.5rem 0;
}

.info-inset-box h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #d9383a;
    font-size: 1.1rem;
    font-weight: 700;
}

.info-inset-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
    color: #515154;
}

.table-wrapper {
    overflow-x: auto;
    margin: 2.5rem 0;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    text-align: left;
}

th {
    border-bottom: 2px solid #1d1d1f;     padding: 0.8rem 0.5rem;
    font-weight: 700;
    color: #1d1d1f;
}

td {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #e5e5ea;
    color: #333336;
}

.td-bold {
    font-weight: 600;
}

.td-highlight {
    color: #0071e3;
    font-weight: 600;
}

.content-link {
    color: #0071e3;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.content-link:hover {
    border-bottom: 1px solid #0071e3;
}

.faq-block, .faq-block-last {
    margin-top: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5ea;
}

.faq-block h4, .faq-block-last h4 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
    color: #1d1d1f;
}

.faq-block p, .faq-block-last p {
    margin-top: 0;
    margin-bottom: 0;
    color: #515154;
}

.tech-reference-footer {
    font-size: 1rem;
    margin-top: 3rem;
    color: #86868b;
}

.cta-box {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-box h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
    color: #1d1d1f;
}

.cta-box p {
    font-size: 1rem;
    color: #515154;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #0071e3;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 980px;     font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #0077ed;
}

.author-box {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5ea;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar svg {
    width: 30px;
    height: 30px;
    fill: #86868b;
}

.author-details h4 {
    margin: 0 0 0.4rem 0;
    font-size: 1.05rem;
    color: #1d1d1f;
}

.author-details h4 a {
    color: #0071e3;
    text-decoration: none;
}

.author-details p {
    font-size: 0.95rem;
    color: #515154;
    line-height: 1.6;
}

.related-posts-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.related-card {
    display: flex;
    flex-direction: column;
}

.related-card h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-card h4 a {
    color: #1d1d1f;
    text-decoration: none;
}

.related-card h4 a:hover {
    color: #0071e3;
}

.related-card p {
    font-size: 0.95rem;
    color: #515154;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.related-card .read-more {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0071e3;
    text-decoration: none;
}

.site-footer {
    background: #f5f5f7;
    margin-top: 5rem;
    padding: 4rem 2rem 2rem 2rem;
    border-top: 1px solid #e5e5ea;
}

.footer-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand-title {
    color: #1d1d1f;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-text {
    color: #515154;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #1d1d1f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
    padding: 0;
    margin: 0;
}

.footer-links-list li a {
    color: #515154;
    text-decoration: none;
}

.footer-links-list li a:hover {
    color: #0071e3;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #128040;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 980px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.88rem;
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    flex-shrink: 0;
}

.social-links-container {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    display: inline-block;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #e5e5ea;
    padding-top: 1.5rem;
    text-align: center;
    color: #86868b;
    font-size: 0.85rem;
}

.blog-content img,
.blog-inline-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin: 2rem auto;
}

.blog-content figure {
    margin: 2rem 0;
}

.blog-content figure img {
    margin: 0 auto;
}

.blog-content figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: #86868b;
    margin-top: 0.6rem;
}

.blog-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.blog-content ul,
.blog-content ol {
    margin: 0 0 1.5rem 0;
    padding-left: 1.4rem;
    font-size: 1.1rem;
    line-height: 1.85;
    color: #333336;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    border-left: 4px solid #0071e3;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: 1.15rem;
    color: #515154;
    font-style: italic;
}

.blog-content a {
    color: #0071e3;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.blog-content a:hover {
    border-bottom-color: #0071e3;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.2rem;
    margin: 0 auto;
    align-items: stretch;
}

.blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding-bottom: 1.5rem;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.blog-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 0;
    margin-bottom: 1.25rem;
    background: #f2f3f5;
}

.blog-card h2 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
    padding: 0 1.5rem;
}

.blog-card h2:first-child {
    padding-top: 1.5rem;
}

.blog-card p {
    font-size: 0.95rem;
    color: #515154;
    margin-bottom: 0;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .main-container { padding-top: 100px; }
    .blog-main-title { font-size: 2rem; }
}