/* promo codes by category */
.promo-code-category__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.promo-code-category__card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 20px 25px;
}

.promo-code-category__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.promo-code-category__header a {
    color: #222;
    text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
}

.promo-code-category__header h2 {
    margin-bottom: 0;
}

.promo-code-category__logo {
    width: fit-content;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    cursor: pointer;
}

.promo-code-category__title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.2;
}

.promo-code-category__description {
    color: #555;
    font-size: 14px;
    margin-bottom: 5px;
}

.promo-code-category__description p {
    margin-bottom: 0;
}

.promo-code-category__store-link {
    font-weight: 500;
    color: #222;
    text-decoration: underline;
    font-size: 14px;
    margin-bottom: 30px;
}

.promo-code-category__verified {
    margin-top: auto;
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.promo-code-category__verified svg {
    color: var(--ast-global-color-0);
    width: 14px;
    height: 14px;
}

.promo-code-category__button {
    color: #fff;
    background-color: var(--ast-global-color-0);
    font-weight: 600;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

@media screen and (max-width: 660px) {
    .promo-code-category__card {
        text-align: center;
    }
    .promo-code-category__logo {
        height: 150px;
        margin: 0 auto 15px;
    }

    .promo-code-category__verified {
        justify-content: center;
    }
}

/* trending-store */
.trending-store__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.trending-store__card {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.trending-store__card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.trending-store__title {
    color: #222;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    word-break: break-word;
}

.trending-store__subtitle {
    color: #555;
    font-size: 14px;
}

/* blog */
.wp-block-uagb-post-carousel .uagb-post__image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
