.blog-font {
    font-family: 'Hind', sans-serif;
    background: #ffffff;
}

/* Card */
.blog-article-card {
    background: #ffffff;
    padding: 40px 42px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Headings */
.blog-font h1 {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
}

.blog-font h3 {
    font-size: 24px;
    font-weight: 700;
    color: #008F97;
}

.blog-font p,
.blog-font li {
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
}

/* Animation */
.blog-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: blogFadeUp 0.9s ease forwards;
}

@keyframes blogFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= ROUTINE CALENDAR ================= */

.routine-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.routine-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.routine-card:hover {
    transform: translateY(-5px);
    border-color: #008F97;
}

.routine-card .time {
    display: inline-block;
    background: #008F97;
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.routine-card h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0f172a;
}

.routine-card p {
    font-size: 15px;
    margin-bottom: 6px;
}

.routine-card small {
    color: #64748b;
    font-weight: 500;
}

/* Quote */
.blog-font blockquote {
    background: #eff6ff;
    border-left: 6px solid #008F97;
    padding: 20px 24px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 40px;
}

/* Mobile */
@media (max-width: 768px) {
    .blog-article-card {
        padding: 24px 20px;
    }

    .blog-font h1 {
        font-size: 24px;
    }
}

/* Center & resize blog main image */
.blog-article-card img {
    max-width: 650px;
    /* You can adjust: 550px / 600px / 700px */
    width: 100%;
    margin: 0 auto 30px auto;
    display: block;
    border-radius: 16px;
}


.blog-font {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    font-family: 'Hind', sans-serif;
}

/* Article Card */
.blog-article-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 22px;
    padding: 42px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Image */
.blog-article-card img {
    max-width: 600px;
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Intro */
.intro-box {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
}

/* Headings */
.blog-article-card h4 {
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: 12px;
    border-left: 5px solid #008F97;
    margin-top: 28px;
    font-weight: 700;
    color: #0f172a;
}

.blog-article-card h4 i {
    color: #008F97;
    margin-right: 8px;
}

/* Important box */
.blog-article-card h3 {
    background: linear-gradient(135deg, #e0f2fe, #ecfeff);
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    color: #0369a1;
    font-weight: 800;
}

/* Highlight */
.highlight-box {
    background: #ecfeff;
    padding: 16px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    margin-top: 12px;
}

/* Divider */
.blog-article-card hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #cbd5f5, transparent);
    margin: 34px 0;
}

/* Quote */
.blog-article-card blockquote {
    background: linear-gradient(135deg, #e0f2fe, #ecfeff);
    border-left: 6px solid #008F97;
    padding: 24px;
    border-radius: 14px;
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    margin-top: 50px;
}

/* Text */
.blog-article-card p {
    font-size: 17.5px;
    line-height: 1.8;
    color: #334155;
}

/* Animation */
.blog-animate {
    animation: blogPop 0.7s ease forwards;
}

@keyframes blogPop {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .blog-article-card {
        padding: 24px;
    }

    .blog-article-card img {
        max-width: 100%;
    }
}