.p-front-featured {
    padding-block: var(--section-space);
    background-color: var(--color-base);
}

.p-front-featured__inner {
    width: min(100.0%, var(--content-width));
    margin-inline: auto;
    padding-inline: var(--inline-gutter);
}

.p-front-featured__header {
    text-align: center;
    margin-bottom: 48.0px;
}

.p-front-featured__title {
    font-size: 28.0px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 16.0px;
}

.p-front-featured__lead {
    font-size: 16.0px;
    color: var(--color-text-sub);
}

.p-front-featured__grid {
    display: grid;
    grid-template-columns: repeat(4, 1.0fr);
    gap: 24.0px;
}

.p-front-featured__item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8.0px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-text-main);
    box-shadow: 0.0 4.0px 16.0px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.p-front-featured__image {
    aspect-ratio: 16.0 / 10.0;
    overflow: hidden;
    background-color: var(--color-surface-light);
}

.p-front-featured__image img {
    width: 100.0%;
    height: 100.0%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-front-featured__body {
    padding: 20.0px;
    flex-grow: 1.0;
}

.p-front-featured__item-title {
    font-size: 18.0px;
    font-weight: 700;
    margin-bottom: 10.0px;
    line-height: 1.4;
    color: var(--color-text-main);
}

.p-front-featured__item-desc {
    font-size: 13.0px;
    line-height: 1.6;
    color: var(--color-text-sub);
}

@media (any-hover: hover) {
    .p-front-featured__item:hover {
        transform: translateY(-6.0px);
        box-shadow: 0.0 12.0px 30.0px rgba(0, 0, 0, 0.12);
        opacity: 1.0;
    }

    .p-front-featured__item:hover .p-front-featured__image img {
        transform: scale(1.05);
    }

    .p-front-featured__item:hover .p-front-featured__item-title {
        color: var(--color-main);
    }
}

@media screen and (max-width: 1024.0px) {
    .p-front-featured__grid {
        grid-template-columns: repeat(2, 1.0fr);
        gap: 20.0px;
    }
}

@media screen and (max-width: 560.0px) {
    .p-front-featured__grid {
        grid-template-columns: 1.0fr;
    }
}