.os-quote-stat {
    position: relative;
    width: 100%;
}
.os-quote-stat__inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--os-radius-m);
    box-shadow: var(--os-box-shadow-l);
    padding: var(--wp--preset--spacing--small);
    display: flex;
    gap: var(--wp--preset--spacing--medium);
}
.os-quote-stat__content p {
    font-size: var(--wp--preset--font-size--headline-4);
    margin-bottom: var(--wp--preset--spacing--x-small);
}
.os-quote-stat__meta {
    font-size: var(--wp--preset--font-size--body-2);
    letter-spacing: 0.06em;
    font-weight: 400;
}
.os-quote-stat__name {
    font-weight: 500;
}
.os-quote-stat__role,
.os-quote-stat__company {
    color: var(--wp--preset--color--text-standard);
    margin-left: var(--wp--preset--spacing--xx-small);
    padding-left: calc(var(--wp--preset--spacing--xx-small) + 5px);
    border-left: 1px solid var(--wp--preset--color--light-grey);
}
.os-quote-stat__stat-style1 {
    min-width: 280px;
    max-width: 100%;
    background-color: var(--os-accent-ultra-light);
    padding: var(--wp--preset--spacing--small);
    border-radius: var(--wp--preset--spacing--x-small);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.os-quote-stat__stat-style1 .os-quote-stat__stat {
    font-size: var(--wp--preset--font-size--headline-2);
    font-weight: 700;
    margin: 0;
    background: var(--os-accent-gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.os-quote-stat__stat-style1 .os-quote-stat__desc {
    color: var(--wp--preset--color--text-dark);
    font-size: 2rem;
    margin: 0;
}

.os-quote-stat-style2 {
    display:flex;
    flex-direction: column;
    gap: var(--wp--preset--spacing--x-small);
}
.os-quote-stat-style2__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: var(--wp--preset--spacing--small);
    align-items: center;
}
.os-quote-stat-style2__header .os-quote-stat__logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 18rem;
    height: 12rem;
}
.os-quote-stat-style2__header .os-quote-stat__logo figure {
    margin-bottom: 0;
    height: 100%;
    width: 100%;
}
.os-quote-stat-style2__header .os-quote-stat__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}
.os-quote-stat-style2__footer {
    display: flex;
    justify-content: flex-end;
}
.os-quote-stat-style2__footer .os-quote-stat__stat {
    font-size: var(--wp--preset--font-size--headline-3);
    font-weight: 700;
    color: var(--wp--preset--color--body-dark);
    margin: 0;
}
.os-quote-stat-style2__footer .os-quote-stat__stat-small {
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--wp--preset--color--text-light);
}
@media screen and (max-width: 768px) {
    .os-quote-stat__inner {
        flex-direction: column;
    }
}
@media screen and (max-width: 480px) {
    .os-quote-stat-style2__header {
        flex-direction: column;
        align-items: center;
    }
    .os-quote-stat-style2__header .os-quote-stat__logo  {
        max-width: 75%;
    }
    .os-quote-stat-style2__header .os-quote-stat__logo figure img {
        object-position: center center;
    }
    .os-quote-stat__meta {
        display: flex;
        flex-direction: column;
        gap: var(--wp--preset--spacing--xx-small);
    }
    .os-quote-stat__role,
    .os-quote-stat__company {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
    }
    .os-quote-stat-style2__footer {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .os-quote-stat {
        flex-wrap: wrap;
    }
}