.mhn-featured-tlds {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto 45px;
    padding: 0 20px;
    direction: rtl;
}

.mhn-featured-tlds-inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.mhn-featured-tlds-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 100%;
}

.mhn-featured-tld-card {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 120px;

    padding: 20px 15px;

    box-sizing: border-box;

    background: linear-gradient(
        180deg,
        #f6fff2 0%,
        #ffffff 100%
    );

    border: 1px solid #dcebd6;
    border-radius: 14px;

    text-decoration: none !important;

    box-shadow:
        0 7px 22px rgba(55, 75, 55, 0.09);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.mhn-featured-tld-card::before {
    content: '';

    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    height: 5px;

    background: #56b82e;

    border-radius: 14px 14px 0 0;
}

.mhn-featured-tld-card:hover {
    transform: translateY(-4px);

    border-color: #b8dcae;

    box-shadow:
        0 12px 28px rgba(55, 75, 55, 0.14);
}

.mhn-featured-tld-name {
    margin-bottom: 9px;

    font-size: 24px;
    font-weight: 800;

    line-height: 1.2;

    color: #243424;

    direction: ltr;
}

.mhn-featured-tld-price {
    font-size: 17px;
    font-weight: 700;

    line-height: 1.5;

    color: #3f4a3f;

    direction: rtl;

    white-space: nowrap;
}

@media (max-width: 767px) {

    .mhn-featured-tlds {
        margin-bottom: 35px;
        padding: 0 12px;
    }

    .mhn-featured-tlds-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mhn-featured-tld-card {
        min-height: 105px;
        padding: 17px 10px;
        border-radius: 12px;
    }

    .mhn-featured-tld-card::before {
        height: 4px;
        border-radius: 12px 12px 0 0;
    }

    .mhn-featured-tld-name {
        font-size: 21px;
        margin-bottom: 7px;
    }

    .mhn-featured-tld-price {
        font-size: 14px;
    }
}

/* Domain page: price cards under the TLD images */
@media (min-width: 768px) {

    .mhn-featured-tlds {
        margin-top: 35px !important;
        margin-bottom: 55px !important;
    }

    .mhn-featured-tlds-inner {
        max-width: 1050px;
    }

    .mhn-featured-tlds-list {
        gap: 20px;
    }

    .mhn-featured-tld-card {
        min-height: 105px;
    }
}

@media (max-width: 767px) {

    .mhn-featured-tlds {
        margin-top: 25px !important;
        margin-bottom: 35px !important;
    }
}
