/*
 * InfoGrid component styles
 *
 * Used on (as of 2026-05-20, CType mask_info_grid):
 *   - /absatzfinanzierung/das-koennen-sie-auch
 *   - /absatzfinanzierung/das-koennen-sie-auch-2
 *
 * Source: extracted from frontend/scss/includes/elements/_infogrid.scss
 */

.infogrid {
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(206, 213, 218, 1);

    .infobox {
        position: relative;

        &::before {
            display: block;
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #f6f6f6;
            background: radial-gradient(circle, #fefefe 0%, #f6f6f6 95%);
            opacity: 0;
            transition: all 200ms ease-in;
            box-shadow: 0 0 10px 0 rgba(206, 213, 218, 1);
        }

        &:hover::before {
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            opacity: 1;
        }
    }

    .infobox-content {
        padding: 2.5rem 1.875rem;
        text-align: center;
        position: relative;
    }

    .counter-roman {
        font-size: 2.25rem;
        color: var(--abc-red);
        margin-bottom: 0.625rem;
        display: block;
    }

    .counter-animcircle {
        display: block;
        position: relative;
        height: 0;
        width: 80%;
        padding-bottom: 80%;
        margin: 0 auto;
        margin-bottom: 1rem;

        /* animierte kreis */
        .circle {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 50%;
            background-color: var(--abc-red);
        }

        .number {
            font-size: 4rem;
            color: var(--abc-red);
            font-weight: bold;
            position: absolute;
            padding-top: 5%;
            top: 10%;
            left: 10%;
            width: 80%;
            height: 80%;
            border-radius: 50%;
            background-color: #fff;
            line-height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}
