/* Blog Index & Single Page Styles */
/* Note: Base font size is 10px (1rem = 10px) */

/* Blog Index */
.blog-header {
    background: #f8fafc;
    padding: 6rem 0; /* 60px */
    border-radius: 1.2rem;
    margin-bottom: 4rem; /* 40px */
    border-left: 0.5rem solid #004085;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(32rem, 1fr)); /* min 320px */
    gap: 3rem; /* 30px */
    margin-bottom: 5rem;
}

.blog-card {
    background: #fff;
    border: 0.1rem solid #e2e8f0; /* 1px */
    border-radius: 1.2rem;
    overflow: hidden;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0.4rem 0.6rem -0.1rem rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    border-color: #004085;
    transform: translateY(-0.5rem); /* 5px */
    box-shadow: 0 1rem 1.5rem -0.3rem rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    width: 100%;
    height: 20rem; /* 200px */
    object-fit: cover;
    background-color: #f1f5f9;
}

.blog-card-body {
    padding: 2.5rem; /* 25px */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 2rem; /* 20px */
    color: #004085;
    font-weight: 700;
    margin-bottom: 1.5rem; /* 15px */
    line-height: 1.4;
}

.blog-card-intro {
    font-size: 1.6rem; /* 16px */
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem; /* 20px */
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 0.1rem solid #f1f5f9;
    padding-top: 1.5rem;
}

.blog-read-more {
    font-size: 1.4rem; /* 14px */
    color: #004085;
    font-weight: 600;
}

/* Single Blog Page */
.single-blog-header {
    margin-bottom: 3rem;
}

.single-blog-title {
    font-size: 3.6rem; /* 36px */
    color: #004085;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.single-blog-meta {
    font-size: 1.4rem; /* 14px */
    color: #64748b;
    margin-bottom: 3rem;
}

.single-blog-img {
    width: 100%;
    max-height: 50rem; /* 500px */
    object-fit: cover;
    border-radius: 1.2rem;
    margin-bottom: 4rem;
}

.single-blog-content {
    font-size: 1.8rem; /* 18px */
    color: #334155;
    line-height: 1.8;
}

.single-blog-content h2 {
    font-size: 2.8rem; /* 28px */
    color: #004085;
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.single-blog-content h3 {
    font-size: 2.4rem; /* 24px */
    color: #004085;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.single-blog-content p {
    margin-bottom: 2rem;
}

.single-blog-content ul, .single-blog-content ol {
    margin-bottom: 2rem;
    padding-left: 2.5rem;
}

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