.under-body {
    background: #ffffff;
    padding: 60px 0 110px;
}

.project-story-list__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.project-story-list-card {
    min-width: 0;
    height: 100%;
}

.project-story-list-card__link {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    text-decoration: none;
    color: #000000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.project-story-list-card__media {
    position: relative;
    height: 270px;
}

.project-story-list-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-story-list-card__content {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 40px;
}

.project-story-list-card__category {
    margin: 0;
    color: #00a082;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.project-story-list-card__body {
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.project-story-list-card__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.project-story-list-card__title span {
    display: block;
}

.project-story-list-card__arrow {
    position: relative;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0e7f80;
}

.project-story-list-card__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translate(-60%, -50%) rotate(45deg);
}

.project-story-list-card__step {
    position: absolute;
    top: -15px;
    left: 40px;
    margin: 0;
    height: 31px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00a082;
    color: #ffffff;
    font-size: 18px;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.05em;
}

.project-story-list-card__step::before,
.project-story-list-card__step::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15px;
    height: 31px;
    background: #00a082;
}

.project-story-list-card__step::before {
    left: -14px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.project-story-list-card__step::after {
    right: -14px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.project-story-list-card__link:hover .project-story-list-card__image {
    transform: scale(1.03);
}

.project-story-list-card__link:focus-visible {
    outline: 2px solid #0ea5a7;
    outline-offset: 4px;
}

@media (max-width: 1080px) {
    .under-body {
        padding: 48px 0 80px;
    }
    .project-story-list__grid {
        gap: 20px;
    }
    .project-story-list-card__content {
        padding: 28px;
    }
    .project-story-list-card__category {
        font-size: 18px;
    }
    .project-story-list-card__title {
        font-size: clamp(26px, 2.8vw, 39px);
    }
}
@media (max-width: 767px) {
    .under-body {
        padding: 32px 0 56px;
    }
    .project-story-list__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
    .project-story-list-card__media {
        height: auto;
        aspect-ratio: 580/270;
    }
    .project-story-list-card__content {
        padding: 30px 20px 20px 20px;
    }
    .project-story-list-card__body {
        gap: 8px;
        margin-top: 8px;
    }
    .project-story-list-card__title {
        font-size: 20px;
    }
    .project-story-list-card__arrow {
        width: 34px;
        height: 34px;
    }
    .project-story-list-card__step {
        left: 20px;
        top: -14px;
        font-size: 14px;
        height: 28px;
        padding: 8px 14px;
    }
    .project-story-list-card__step::before,
    .project-story-list-card__step::after {
        height: 28px;
    }
}
/*# sourceMappingURL=project-story-list.css.map */
