.card-img-top {
    height: 180px;        /* 👈 control height here */
    object-fit: cover;    /* 👈 crops image nicely */
    width: 100%;
}


.article-content {
    max-width: 750px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* Headings */
.article-content h1,
.article-content h2,
.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.article-content h2 {
    font-size: 28px;
}

.article-content h3 {
    font-size: 22px;
}

/* Paragraphs */
.article-content p {
    margin-bottom: 1.2rem;
}

/* Lists */
.article-content ul {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

/* Image */
.article-image {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Improve readability */
.article-content strong {
    font-weight: 600;
}

.article-content a {
    color: #0d6efd;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}




.related-card {
    transition: all 0.25s ease;
    border-radius: 12px;
    overflow: hidden;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.related-img {
    height: 160px;
    object-fit: cover;
}

.related-section h3 {
    font-size: 1.4rem;
}