.pw h2, .pw h1 {
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    margin: 6px;
    color: #333;
}

.pw1 {
    row-gap: 30px;
    display: grid;
    margin-top: 30px;
    column-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.pw1 a {
    display: flex;
    flex-direction: column;
    border: 1px solid #eaebea;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
    height: 100%;
}

.pw1 h3 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.3px;
    color: #333;
    font-weight: 400;
    margin-bottom: 12px;
}
.pw2 {
    position: relative;
}


.pw2 img {
    border-radius: 8px;
    width: 100%;
}

.pw2 span {
    position: absolute;
    top: 4%;
    z-index: 3;
    padding: 4px 8px;
    background: linear-gradient( 225deg, var(--color-light), var(--color-main), var(--color-dark));
    color: #fff;
    font-size: 12px;
    line-height: 14px;
    border-radius: 0 8px 8px 0;
    left: 0;
}

.pw3 {
    display: flex;
    justify-content: space-between;
    color: #333;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 12px;
    align-items: center;
    border-top: 1px solid #eaebea;
    pointer-events: none;
    padding-top: 12px;
    letter-spacing: 0.5px;
}

.pw3 svg {
    width: 28px;
    height: auto;
    fill: var(--color-main);
}

.pw4 {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.pw4 span {
    margin-top: 8px;
    font-weight: 600;
}

@media (max-width: 900px) and (min-width: 768px) {
    .pw1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) and (min-width: 510px) {
    .pw1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 509px) {
    .pw1 {
        grid-template-columns: repeat(1, 1fr);
    }
}