.blog {
    background-color: #D2D2D2;
    padding: 200px 70px;
}

.blog h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 65px;
    color: #062435;
    margin-bottom: 20px;
}

a {
    text-decoration: none !important;
}

.custom-card {
    background: #F1F5F9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    color: #062435;
    cursor: pointer;
    text-decoration: none !important;
}

.custom-card:hover {
    background: #062435;
    color: #F1F5F9;
    transform: translateY(-8px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.custom-card .card-image {
    margin: 24px;
    border-radius: 16px;
    overflow: hidden;
}

.custom-card .card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}


.custom-card .card-content {
    padding: 0 20px 24px 20px;
}

.custom-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 28px;
    transition: color 0.3s ease;
}

.custom-card p {
    font-size: 16px;
    font-weight: 400px;
    line-height: 28px;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.custom-card .card-date {
    text-align: end;
    font-size: 0.85rem;
    opacity: 0.8;
    display: block;
    transition: color 0.3s ease;
}

@media(max-width: 991.98px) {
    .blog {
        padding: 100px 30px;
    }
}

/* Blog Detail */
.blog-detail {
    background-color: #D2D2D2;
    padding: 120px 70px;
    display: flex;
    justify-content: center;
}

.blog-container {
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.blog-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0a1a2a;
}

.blog-date {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 24px;
}

.blog-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.blog-content {
    margin-top: 30px;
    line-height: 1.8;
    font-size: 1rem;
    color: #2e3a47;
}

.blog-content h3 {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1a2a;
}

.blog-content p {
    margin-bottom: 16px;
}

@media(max-width: 991.98px) {
    .blog-detail {
        padding: 100px 30px;
    }
}

/* End Blog Detail */
