.pc-items {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: #fafafa;
}

.pc-items__header {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e8e8e8;
}

.pc-items__title {
    color: #26282a;
    font-family: Aeonik;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    max-width: 720px;
}

.pc-items__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.pc-items__card,
.pc-items__card:hover,
.pc-items__card:focus,
.pc-items__card:active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    text-decoration: none;
    color: #fff;
}

.pc-items__card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.pc-items__card-image-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(0, 0, 0, 0.105) 55.08%,
        rgba(0, 0, 0, 0.488) 69.76%,
        rgba(0, 0, 0, 0.7)
    );
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.pc-items__card-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pc-items__card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 3;
    position: relative;
    padding: 2rem;
}

.pc-items__card-content-title-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
}

.pc-items__card-content-title-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.pc-items__card-title {
    color: #fff;
    font-family: Aeonik;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    text-wrap: balance;
    margin: 0;
    text-decoration: none;
}

.pc-items__card-title-line {
    display: inline;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-position: left bottom;
    background-repeat: no-repeat;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

@media (max-width: 992px) {
    .pc-items__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pc-items__grid {
        grid-template-columns: 1fr;
    }

    .pc-items__title {
        font-size: 2.5rem;
    }

    .pc-items__header {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
}
