.ilp-pillars {
    width: 100%;
    color: #ffffff;
}

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

.ilp-pillars__card {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 270px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 28px 24px 24px;
    overflow: visible;
    border-radius: 18px;
    color: var(--ilp-pillar-text, #ffffff);
    background: var(--ilp-pillar-bg, #ee7770);
    background-image: linear-gradient(135deg, var(--ilp-pillar-bg, #ee7770), var(--ilp-pillar-bg-2, var(--ilp-pillar-bg, #ee7770)));
    text-align: center;
}

.ilp-pillars__icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, var(--ilp-icon-translateY, -42px));
    z-index: 2;
    display: grid;
    width: var(--ilp-icon-size, 88px);
    height: var(--ilp-icon-size, 88px);
    flex: 0 0 auto;
    place-items: center;
    margin: 0;
    border: 2px solid var(--ilp-pillar-icon-border, currentColor);
    border-radius: 50%;
    color: var(--ilp-pillar-icon-color, #ffffff);
    background: var(--ilp-pillar-icon-bg, var(--ilp-pillar-bg, #ee7770));
    background-image: linear-gradient(135deg, var(--ilp-pillar-icon-bg, var(--ilp-pillar-bg, #ee7770)), var(--ilp-pillar-icon-gradient, var(--ilp-pillar-icon-bg, var(--ilp-pillar-bg, #ee7770))));
    background-size: cover;
    background-position: center;
    font-size: calc(var(--ilp-icon-size, 88px) * 0.45);
    overflow: hidden;
}

.ilp-pillars__icon-img {
    width: 56%;
    height: auto;
    display: block;
}

.ilp-pillars__icon svg {
    width: 58%;
    height: 58%;
    fill: currentColor;
    stroke: currentColor;
    color: var(--ilp-pillar-icon-color, #ffffff);
}

.ilp-pillars__icon svg *,
.ilp-pillars__icon i,
.ilp-pillars__icon path,
.ilp-pillars__icon circle,
.ilp-pillars__icon rect,
.ilp-pillars__icon polygon,
.ilp-pillars__icon line,
.ilp-pillars__icon polyline {
    color: var(--ilp-pillar-icon-color, #ffffff) !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}

.ilp-pillars__title,
.ilp-pillars__description {
    width: 100%;
    margin: 0;
    color: inherit;
}

.ilp-pillars__title {
    margin-bottom: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.15;
}

.ilp-pillars__description {
    font-size: .95rem;
    line-height: 1.35;
}

@media (max-width: 991px) {
    .ilp-pillars__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .ilp-pillars__grid {
        grid-template-columns: 1fr;
    }

    .ilp-pillars__card {
        min-height: 220px;
    }
}
