.post-content-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 782px;
}

.post-type-cards {
    margin: 20px 0;
}

.post-type-cards__container {
    max-width: 1216px;
    padding: 0 20px;
    margin: 0 auto;
}

.post-type-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.post-type-cards__card {
    border: 1px solid #1C1C1C;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.post-type-cards .post-type-cards__title {
    color: #1C1C1C;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0%;
    margin: 0 0 30px 0;
    min-height: 84px;
}

.post-type-cards .post-type-cards__description {
    color: #575757;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    margin-bottom: 40px;
}

.post-type-cards__icon-wrap {
    width: 40px;
    height: 40px;
    background: #EEEEEE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: auto;
}

.post-type-cards__icon-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@media screen and (max-width: 991px) {
    .post-type-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-type-cards__title {
        font-size: 26px;
    }
}

@media screen and (max-width: 600px) {
    .post-type-cards {
        padding: 32px 0;
    }

    .post-type-cards__grid {
        grid-template-columns: 1fr;
    }

    .post-type-cards__card {
        padding: 24px;
    }
}
