.ppc-image-button-section {
    background-color: #E7F2F6;
}

.ppc-image-button-section-intro {
    padding-bottom: 50px;
}

.ppc-image-button-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ppc-image-button-list__item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 240px;
}

.ppc-image-button {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.09);
}

.ppc-image-button__upper {
    flex: 0 1 auto;
    position: relative;
}

.ppc-image-button__lower {
    flex: 1;
    padding: 42px 16px;
    text-align: center;
}

.ppc-image-button__img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.ppc-image-button__icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.ppc-image-button__icon-container:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #003057;
    opacity: 0.85;
}

.ppc-image-button__icon-img {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.ppc-image-button__title {
    font-size: 20px;
    color: #040E1C;
}

.ppc-image-button__desc {
    font-size: 16px;
    color: #505759;
}

@media (min-width: 1200px) {
    .ppc-image-button-list {
        gap: 32px;
    }

    .ppc-image-button-list__item {
        width: calc(25% - 32px);
    }
}

@media (min-width: 1366px) {
    .ppc-image-button-list__item {
        width: calc(20% - 32px);
    }
}