/* Wrapper stays the same */
.mspw-image-container {
    width: 95vw;        /* full width */
    max-width: 100%;
    height: 50vh;       /* adjust this as needed */
    overflow: hidden;   /* crop the excess */
    display: block;
    margin: 0 auto;
}

/* Make image fill width and crop from center */
.mspw-image {
    width: 100%;
    height: 400px!important;
    object-fit: cover;
    object-position: center 17%;
    display: block;
}

/* Title */
.mspw-title {
    width: 90%;
    max-width: 100%;
    margin: 20px auto 20px auto;
    text-align: left;
    font-size: 35px !important;
    font-weight: bold;
    word-wrap: break-word;
    line-height: 1 !important;
}

.mspw-title a {
    text-decoration: none;
    color: #333;
}

.mspw-title a:hover {
    color: #000;
}

/* Excerpt */
.mspw-excerpt {
    width: 90%;
    max-width: 100%;
    margin: 0 auto 30px auto;
    text-align: left;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    color: #4e4d4d;
}


/* Tablet */
@media (max-width: 1024px) {
    .mspw-wrapper {
        width: 100%;
    }
    .mspw-image {
        width: 100%;
    }
    .mspw-title {
        width: 80%;
        font-size: 30px!important;
        text-align: left;
    }

    /* Tablet excerpt */
    .mspw-excerpt {
        width: 80%;
        font-size: 18px!important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mspw-title {
        width: 90%;
        font-size: 30px!important;

        text-align: left;
    }

    /* Mobile excerpt */
    .mspw-excerpt {
        width: 90%;
        font-size: 16px!important;
    }
}
