.image-wrapper {
    margin: 42px 0 42px 0;
}

.mhi-register.about-actions {
    padding-top: 0;
}

h2.section-title {
    margin-bottom: 22px;
}

.content-section {
    font-size: 12px;
    color: #000;
}

.content-section p {
    margin-bottom: 20px;
}

.bottom-actions {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

/* News & Promotions Styling */
.news-listing-section {
    padding-bottom: 80px;
}

.news-listing-section .section-title {
    color: #233645 !important;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.news-listing-section .section-news-title {
    margin-top: 60px;
}

.promotion-card {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
}

.card-image {
    background-color: #e6e6e6;
    width: 100%;
    overflow: hidden;
}

.card-image a,
.card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-card .card-image img {
    max-height: 194px;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 15px;
    gap: 10px;
}

.card-text-side h3 {
    font-size: 18px;
    font-weight: 700;
    color: #233645;
    margin: 0;
}

.card-text-side p {
    font-size: 14px;
    color: #333;
    margin: 0 0 10px 0;
}

.terms-link {
    font-size: 12px;
    color: #233645;
    text-decoration: underline;
    font-weight: 400;
}

.card-buttons-side {
    display: flex;
    gap: 12px;
}

.btn-dark-blue,
.btn-red-full {
    background-color: #233645;
    color: #fff !important;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.3s;
    min-width: 146px;
    text-align: center;
}

.btn-red-full {
    background-color: #ed1c24;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    margin-top: 30px;
    padding-bottom: 28px;
}

.news-item {
    display: flex;
    flex-direction: column;
}

.news-image {
    background-color: #e6e6e6;
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
}

.news-image a,
.news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    gap: 10px;
}

.news-text h3 {
    font-size: 12px;
    font-weight: 700;
    color: #233645;
    margin: 0;
}

.news-text p {
    font-size: 12px;
    color: #2D414D;
    margin: 0;
}

.news-buttons {
    display: flex;
    gap: 8px;
}

.btn-dark-blue-sm,
.btn-red-sm {
    background-color: #233645;
    color: #fff !important;
    padding: 7px 20px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    min-width: 99px;
    text-align: center;
}

.btn-red-sm {
    background-color: #ed1c24;
}

.dashboard-return {
    margin-top: 60px;
}

.btn-outline-red {
    display: block;
    width: 100%;
    border: 1.5px solid #ed1c24;
    color: #ed1c24 !important;
    text-align: center;
    padding: 12px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline-red:hover {
    background-color: #ed1c24;
    color: #fff !important;
}

@media (max-width: 767px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .card-content,
    .news-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-buttons-side,
    .news-buttons {
        margin-top: 15px;
        width: 100%;
    }

    .btn-dark-blue,
    .btn-red-full,
    .btn-dark-blue-sm,
    .btn-red-sm {
        flex: 1;
        text-align: center;
    }
}