.agb_header {
    padding-top: 70px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.agb_header h3 {
    font-size: 34px;
    font-family: "Cormorant Bold";
}
.agb_header h4 {
    font-size: 24px;
    font-family: "Cormorant Bold";
}
.agb_header h5 {
    font-size: 20px;
    font-family: "Cormorant Bold";
}
.agb_header h6 {
    font-size: 20px;
    font-family: "Cormorant Bold";
    margin: 0;
}
ol {
    max-width: 720px;
    list-style-position: outside;
    padding-inline: 25px;
    padding: 10px 50px ;
    text-align: justify;
    text-wrap: pretty;
    
}
ol li {
    
    font-family: "Eczar Regular";
    font-size: 20px;

}

ol li p {
    font-size: 18px;
    line-height: .7lh;

}

ol li:not(:last-of-type) {
    margin-bottom: .6lh;
}
.agb {
    max-width: 780px;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: var(--boxradius);
    box-shadow: 0 0 10px 1px hsla(0, 0%, 65%, 0.805), 0 0 20px 4px hsla(0, 0%, 48%, 0.805);
}
article:has(.agb) {
    display: flex;
    justify-content: center;
    font-size: 18px;
}
.agb_text span div {
    display: none;
}
.agb_text span {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-top: 2px hsl(180, 50%, 86%) solid;
}

.agb_text span img {
    width: 50px;
}

.agb_text span p:has(img) {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.agb_diamond {
    background-image: url(assets/svg/diamond_logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    height: 2.8cqw;
    width: 100%;
    margin-top: 20px;
}

.agb_text span a {
    color: black;
    font-family: "Cormorant Bold";
    text-decoration: none;
}

@media (min-width: 760px) {
    .agb_text span {
        flex-direction: row;
    }
    .agb_text span div {
        display: block;
    }
}