.mt-elementor-news {
    width: 100%;
    padding: 100px;
    background: #ffffff;
}

.mt-elementor-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.mt-elementor-news-heading {
    margin: 0;
    color: #0d0d0d;
    font-family: var(--vape-font-brand);
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mt-elementor-news-view-all {
    min-width: 154px;
    height: 32px;
    padding: 0 50px;
    border-radius: 99px;
    background: #2ef0d6;
    color: #0d0d0d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--vape-font-brand);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
}

.mt-elementor-news-view-all:hover,
.mt-elementor-news-view-all:focus {
    color: #0d0d0d;
    text-decoration: none;
    opacity: 0.9;
}

.mt-elementor-news-grid {
    display: grid;
    min-height: 381px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mt-elementor-news-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mt-elementor-news-card:hover,
.mt-elementor-news-card:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
}

.mt-elementor-news-card-image-wrap {
    width: 100%;
    aspect-ratio: 400 / 250;
    overflow: hidden;
    background: #dcdcdc;
}

.mt-elementor-news .mt-elementor-news-card-image {
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: cover;
    object-position: center;
}

.mt-elementor-news-card-placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(143, 137, 250, 0.14), rgba(46, 240, 214, 0.12)),
        #eef3f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-family: var(--vape-font-brand);
    font-size: 14px;
    font-weight: 700;
}

.mt-elementor-news-card-body {
    min-height: 131px;
    padding: 20px;
    background: #eaeaea;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.mt-elementor-news-card-title {
    margin: 0 30px 0 0;
    color: #0d0d0d;
    font-family: var(--vape-font-brand);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    white-space: pre-line;
}

.mt-elementor-news-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.mt-elementor-news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #666666;
    font-family: var(--vape-font-body);
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.mt-elementor-news-card-arrow {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mt-elementor-news-card-arrow img {
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: contain;
}

.mt-elementor-news-card-arrow span {
    color: #0d0d0d;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1024px) {
    .mt-elementor-news {
        padding: 48px 28px;
    }

    .mt-elementor-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .mt-elementor-news {
        padding: 40px 18px;
    }

    .mt-elementor-news-header {
        margin-bottom: 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .mt-elementor-news-heading {
        font-size: 20px;
    }

    .mt-elementor-news-grid {
        grid-template-columns: 1fr;
    }

    .mt-elementor-news-card-body {
        min-height: auto;
    }
}