p {
    margin: 0;
    padding: 0;
    letter-spacing: -.04em;

}

header h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    color: white;
    text-align: center;
    box-shadow: 0 0 0 1px white;
    text-wrap: nowrap;
    z-index: 3;
    border: 1px solid white;
}

header img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

header>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 2px);
    pointer-events: none;
}

.infos {
    position: absolute;
    top: 0;
    right: 50%;
    translate: 50% -50%;
}

.infos>div>div {
    --bs-border-width: 3px;

    background: var(--bs-body-bg);
    color: var(--bs-body-color);
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    padding: 0.5rem;
    text-wrap: nowrap;
    text-transform: uppercase;

}

.infos>div>div.orange {
    --bs-border-color: orange;
}



.bg-green-gradient {
    background:
        linear-gradient(217deg, rgba(128, 186, 39, 0.8), rgba(255, 0, 0, 0) 70.71%),
        linear-gradient(127deg, rgba(128, 186, 39, 0.8), rgba(0, 255, 64, 0) 70.71%),
        linear-gradient(336deg, rgba(128, 186, 39, 0.8), rgba(0, 0, 255, 0) 70.71%);
    background-size: 100% 100%;
}



main {
    min-height: 100vh;
    counter-reset: articles;
}

article h2::before {
    counter-increment: articles;
    content: counter(articles) " ";
    font-weight: 100;
    opacity: 0.4;
}


[breakfast] img {
    border-radius: 8px 0 0 8px;
    object-fit: cover;
    width: 100%;
    min-height: 100%;
    max-height: 380px;
}

[breakfast] .radius {
    border-radius: 0 8px 8px 0;
}

@media screen and (max-width: 992px) {
    [breakfast] img {
        border-radius: 8px 8px 0 0;
    }

    [breakfast] .radius {
        border-radius: 0 0 8px 8px;
    }
}

[result] .img-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

[result] .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

[result] .card:after {
    content: '';
    position: absolute;
    left: 30px;
    bottom: -24px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-width: 12px 15px;
    border-top-color: #fff;
}





button.start-50 {
    translate: -50% 14px;
}

.card img {
    height: 260px;
    object-fit: cover;
}

@media screen and (max-width: 992px) {


    header img {
        height: 300px;
    }

    .infos>div>div {
        font-size: 0.8rem;
    }


}

@media screen and (max-width: 768px) {
    header img {
        height: 300px;
    }

    section.container-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 575px) {

    header img {
        height: 250px;
    }



}