/* HonestMeter: three homepage trust cards and public add-website search action. */
.home-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-search .search-results {
    text-align: left;
}

.home-search-empty {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: #fff;
}

.home-search-empty-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #087250;
    background: #e4f8f0;
    border-radius: 13px;
    font-size: 22px;
}

.home-search-empty h4 {
    margin: 0 0 3px;
    color: #071b2f;
    font-size: 17px;
}

.home-search-empty p {
    margin: 0;
    color: #627483;
    font-size: 13px;
    line-height: 1.45;
}

.home-search-add-btn {
    min-height: 42px;
    padding-inline: 18px;
    white-space: nowrap;
    border-radius: 10px;
    font-weight: 700;
}

.add-website-modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 28px 75px rgba(7, 27, 47, .25);
}

@media (max-width: 991.98px) {
    .home-trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-trust-grid > div:nth-child(2) {
        border-right: 1px solid var(--hm-line);
    }

    .home-trust-grid > div:nth-child(-n+2) {
        border-bottom: 0;
    }

    .home-search-empty {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .home-search-empty-icon {
        width: 44px;
        height: 44px;
    }

    .home-search-add-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .home-trust-grid {
        grid-template-columns: 1fr;
    }

    .home-trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .home-trust-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--hm-line);
    }

    .home-search-empty {
        padding: 18px;
    }
}
