#primary>.content-asset>.ingredients-tile {
    aspect-ratio: 356/639;
    margin: 0 auto;
}

@media (max-width:761px) {
    #primary>.content-asset>.ingredients-tile {
        aspect-ratio: 193 / 380;
        max-width: 308px;
    }
}

.ingredients-tile {
    --TILE-WIDTH: 356px;
    --TILE-HEIGHT: 639px;
    max-width: var(--TILE-WIDTH);
    max-height: var(--TILE-HEIGHT);
    container-type: size;
    container-name: ingredient_tile;
    min-height: 356px;
    position: relative;
    width: 100%;
    height: 100%;
    --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book", Helvetica, Arial, sans-serif;
    --FONT-GOTHAM-MEDIUM: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium", "GothamMedium", Helvetica, Arial, sans-serif;
    /*border: 1px solid #d3ccc8;*/
}

.ingredients-tile__wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
}

.ingredients-tile__background {
    display: block;
    /*position: relative;
    width: 100%;
    height: 100%;*/
    max-width: var(--TILE-WIDTH);
    width: calc(100% + 32px);
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    aspect-ratio: calc(var(--TILE-WIDTH) / var(--TILE-HEIGHT));
    transform: translateX(-50%) translateY(-50%);
}

@container ingredient_tile (aspect-ratio < 356/639) {
    .ingredients-tile__background {
        width: auto;
        height: calc(100% + 32px);
    }
}

@container ingredient_tile (aspect-ratio >=356/639) {
    .ingredients-tile__background {
        width: 100%;
        left: 0;
        transform: translateY(-50%);
    }
}


.ingredients-tile__background img {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform cubic-bezier(0, 0, 0.2, 1) 0.5s;
    transform: scale(1.0001);
}

.ingredients-tile:hover .ingredients-tile__background img {
    transform: scale(1.04);
}

.ingredients-tile__content {
    position: absolute;
    z-index: 2;
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #fff;
    padding: 30px 20px;
    padding-bottom: 32px;
    padding-top: 80px;
    box-sizing: border-box;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.75) 100%);
}

.ingredients-tile__title {
    margin: 0;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 20px;
    line-height: 1.3em;
}

.ingredients-tile__text {
    margin: 0;
    padding-top: 8px;
    font-family: var(--FONT-GOTHAM-BOOK);
    font-size: 14px;
    line-height: 1.4em;
}

a.ingredients-tile__link,
.ingredients-tile__link {
    padding-top: 16px;
    box-sizing: border-box;
    display: block;
    color: #fff;
    text-decoration: underline;
    text-transform: uppercase;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    font-size: 11px;
    line-height: 1em;
    outline: 0;
    box-sizing: border-box;
}

a.ingredients-tile__link:hover,
.ingredients-tile__link:hover {
    text-decoration: none;
    color: #fff;
}



.ingredients-tile__link:focus-visible::before {
    box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893d2;
}

.ingredients-tile__link::before {
    content: " ";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100cqh;
    box-sizing: border-box;
    /** CBA 2025 ***/
    border: 1px solid #d3ccc8;
}

@media(max-width:761px) {

    .ingredients-tile,
    .ingredients-tile__background {
        max-width: 100%;
    }

    .ingredients-tile__title {
        font-size: 14px;
        line-height: 1.45em;
    }

    .ingredients-tile__text {
        font-size: 12px;
    }
}

@media(max-width:616px) {

    .ingredients-tile,
    .ingredients-tile__background {
        max-width: 308px;
    }
}


*[lang="ar"] .ingredients-tile {
    text-align: right;
    --CSPOT-GOTHAM-MEDIUM: "Tajawal-Medium", Gotham SSm medium A, Gotham SSm medium B, Helvetica, Arial, sans-serif;
    --CSPOT-GOTHAM-BOOK: "Tajawal-Regular", Gotham SSm book A, Gotham SSm book B, Helvetica, Arial, sans-serif;
}

*[lang="ar"] .ingredients-tile__content {
    align-items: flex-end;
}