/* Container for each case card */
.mcs-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0; /* light grey separator */
}

/* Image */
.mcs-thumb img {
    display: block;
    width: 260px;
    height: auto;
    border-radius: 8px;
}

/* Text area */
.mcs-content {
    max-width: 700px;
}

/* Title */
.mcs-title {
    margin: 0 0 8px;
    font-size: 1.4rem;
}

/* Make title + read more links look clean */
.mcs-title a,
.mcs-readmore a {
    color: inherit;
    text-decoration: none;
}

.mcs-title a:hover,
.mcs-readmore a:hover {
    text-decoration: underline;
}

/* Excerpt */
.mcs-excerpt {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Read more text */
.mcs-readmore {
    margin-top: 8px;
    font-size: 0.95rem;
}

/* Mobile: stack image and text vertically */
@media (max-width: 768px) {
    .mcs-item {
        flex-direction: column;
    }

    .mcs-thumb img {
        width: 100%;
    }
}
