.mfgs-news {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid grey;
}

.mfgs-news-row {
    display: flex;
    border-bottom: 1px solid grey;
    padding: 2rem 0;
}

.mfgs-news-row-left {
    width: 30%;
}

.mfgs-news-row-left-img {
    max-width: 100%;
    cursor: pointer;
    border-radius: 5%;
    box-shadow: 0 4px 2px -2px #534e4e;
}

.mfgs-news-row-mid {
    width: 10%;
    padding: 0 1rem;
}

.mfgs-news-row-right {
    width: 60%;
    display: flex;
    flex-direction: column;
}

/* Details view css */
.mfgs-news-details-wrapper {
    display: flex;
}

.mfgs-news-detail-left {
    display: flex;
    flex-direction: column;
    width: 70%;
    border-right: 2px solid #a9a3a3;
    padding-top: 3rem;
}

.mfgs-news-detail-content {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-right: 7%;
}

.mfgs-news-detail-content-title {
    color: #00003c;
    font-size: 2rem;
}

.mfgs-news-detail-content-shortDescription {
    color: #00003c;
    font-size: 2rem;
}

.mfgs-news-detail-content-description {
    color: #00003c;
    font-size: 1rem;
}

.mfgs-news-detail-right {
    display: flex;
    flex-direction: column;
    width: 30%;
    padding-left: 2rem;
    padding-top: 3rem;
}

.mfgs-news-detail-right-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media only screen and (max-width: 767px) {
    .mfgs-news-wrapper h2 {
        padding: 0 !important;
        margin: 0 !important;
    }

    .mfgs-news {
        border-top: none !important;
    }

    .mfgs-news-row {
        flex-direction: column;
    }

    .mfgs-news-row-left {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .mfgs-news-row-left img {
        max-width: 85% !important;
    }

    .mfgs-news-row-mid {
        width: 100%;
        padding: 1rem 0 !important;
    }

    .mfgs-news-row-right {
        width: 100%;
        padding: 0 2rem;
    }

    .mfgs-news-row-right-description {
        font-size: 0.7rem !important;
    }

    /* Details view css */
    .mfgs-news-details-wrapper {
        flex-direction: column !important;
    }

    .mfgs-news-detail-back {
        font-size: 1.2rem !important;
    }

    .mfgs-news-detail-date {
        font-size: 1.2rem !important;
    }

    .mfgs-news-detail-left {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #a9a3a3;
        padding-top: 0 !important;
    }

    .link-button-wrapper {
        position: sticky;
        top: 15%;
    }

    .link-buttons {
        position: relative;
    }

    .mfgs-news-detail-content {
        width: 100%;
    }

    .mfgs-news-detail-content-title {
        font-size: 1.2rem !important;
    }

    .mfgs-news-detail-content-shortDescription {
        font-size: 1.2rem !important;
    }

    .mfgs-news-detail-content-description {
        font-size: 0.8rem !important;
    }

    .mfgs-news-detail-right {
        width: 100%;
        padding-top: 0 !important;
    }

    .mfgs-news-detail-right h3 {
        text-align: center;
    }

    .mfgs-news-detail-right-card {
        display: flex;
        justify-content: center;
    }

    .mfgs-news-row-left-img {
        max-width: 80%;
    }
}