.blog_listing {
    display: flex;
    flex-direction: column;
    gap: 30px; /* space between blog rows */
}

.blog_card {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.blog_card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.blog_header {
    margin-bottom: 12px;
}

.blog_date {
    font-size: 14px;
    color: #777;
    margin-bottom: 4px;
}

.blog_title {
    font-size: 22px;
    font-weight: 700;
    color: #e91e63; /* Pink */
    margin: 0;
    line-height: 1.4;
}

.blog_desc {
    font-size: 15px;
    color: #555;
    margin: 16px 0;
    line-height: 1.6;
}

.read_more_btn {
    display: inline-block;
    background: #e91e63; /* Pink */
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

.read_more_btn:hover {
    background: #d81b60; /* Darker pink */
}
.intro_card {
    background: #fff8fb; /* light pink background */
    border: 1px solid #f5c6d8;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 0 auto 30px auto;
    max-width: 800px;   /* ✅ limits the width so box is not full screen */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: justify; /* ✅ justify the description text */
}

.intro_title {
    font-size: 22px;
    font-weight: 700;
    color: #e91e63; /* pink */
    margin-bottom: 10px;
    text-align: left; /* ✅ keep heading left aligned */
}

.intro_text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}