/* ================= info ================= */

.info,
.info *,
.info *::before,
.info *::after {
    box-sizing: border-box;
}

.info {
    --red: #a0102f;
    --navy: #13213f;
    --muted: #5d6679;
    --soft: #f7e7ec;

    position: relative;
    overflow: hidden;
    padding: 72px 0 86px;
    background: #f6f5f6;
    isolation: isolate;
}

.info__decor {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.info__decor-shape {
    position: absolute;
    border-radius: 50%;
}

.info__decor-shape--tr {
    top: -160px;
    right: -110px;
    width: 380px;
    height: 380px;
    background: #f1e6ea;
}

.info__decor-shape--tr-ring {
    top: -230px;
    right: -190px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(160, 16, 47, .25);
}

.info__decor-shape--bl {
    left: -200px;
    bottom: -260px;
    width: 460px;
    height: 460px;
    background: #f1e6ea;
}

.info__decor-shape--bl-ring {
    left: -280px;
    bottom: -330px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(160, 16, 47, .25);
}

.info__head {
    position: relative;
    margin-bottom: 40px;
    padding-top: 32px;
}

.info__head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 78px;
    height: 4px;
    background: var(--red);
}

.info__title {
    margin: 0;
    font-family: 'PT Serif', Georgia, serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--navy);
}

.info__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.info-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 26px 28px 44px;
    border: 1px solid #ecebec;
    border-radius: 10px;
    background: #fbfafb;
    color: inherit;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 18px 36px rgba(19, 33, 63, .09);
}

.info-card--static {
    cursor: default;
}

.info-card--static:hover {
    transform: none;
    background: #fbfafb;
    box-shadow: none;
}

.info-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--soft);
    transition: background-color .25s ease;
}

.info-card:hover .info-card__icon {
    background: #f3dbe2;
}

.info-card__icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.info-card__icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--red);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-card__body {
    position: relative;
    min-width: 0;
    padding-left: 22px;
    border-left: 1px solid #e2d5da;
}

.info-card__title {
    display: block;
    margin: 0 0 10px;
    font-family: 'PT Serif', Georgia, serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--navy);
}

.info-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
}

.info-card__arrow {
    position: absolute;
    right: 26px;
    bottom: 22px;
    width: 20px;
    height: 13px;
    fill: none;
    stroke: var(--red);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s ease;
}

.info-card:hover .info-card__arrow {
    transform: translateX(5px);
}

/* ================= adaptive ================= */

@media (max-width: 1500px) {
    .info__title {
        font-size: 38px;
    }

    .info-card {
        gap: 18px;
        padding: 24px 24px 42px;
    }

    .info-card__icon {
        width: 76px;
        height: 76px;
    }

    .info-card__icon svg,
    .info-card__icon-img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 1200px) {
    .info {
        padding: 58px 0 68px;
    }

    .info__title {
        font-size: 34px;
    }

    .info__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 1024px) {
    .info__head {
        margin-bottom: 30px;
    }

    .info__title {
        font-size: 30px;
    }

    .info-card__title {
        font-size: 18px;
    }

    .info-card__icon {
        width: 68px;
        height: 68px;
    }

    .info-card__icon svg,
    .info-card__icon-img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .info {
        padding: 44px 0 52px;
    }

    .info__list {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 576px) {
    .info {
        padding: 34px 0 40px;
    }

    .info__head {
        padding-top: 24px;
        margin-bottom: 22px;
    }

    .info__head::before {
        width: 58px;
        height: 3px;
    }

    .info__title {
        font-size: 25px;
    }

    .info-card {
        gap: 14px;
        padding: 18px 18px 38px;
    }

    .info-card__icon {
        width: 56px;
        height: 56px;
    }

    .info-card__icon svg,
    .info-card__icon-img {
        width: 28px;
        height: 28px;
    }

    .info-card__body {
        padding-left: 14px;
    }

    .info-card__title {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .info-card__text {
        font-size: 14px;
    }

    .info-card__arrow {
        right: 18px;
        bottom: 16px;
    }
}