.cartea {
    display: flex;
    flex-direction: row;
    gap: 1rem;

    width: 100%;
    height: 350px;
    padding: 40px 26px;

    background: #fff;
    box-shadow: 0px 4px 12px -4px rgba(147, 145, 131, 0.26);
    border-radius: 36px;
    border: 1px solid rgba(147, 145, 131, 0.16);
}

.cartea img {
    border-radius: 24px;
    width: 50%;
    object-fit: cover;
}

.cartea button {
    width: 100%;
    font-weight: 400;
    text-transform: none;
    color: #fdf7d3;
    background: #f05644;
    border: 2px solid #f05644;
}

.cartea button:hover {
    color: #f05644;
    background: #fdf7d3;
    border: 2px solid #f05644;
}

.continut {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 50%;
    height: 100%;
}

.titlu {
    color: #771614;
    font-weight: bold;
    font-size: 30px;
}

.data {
    color: #f05644;
}

.desc {
    position: relative;
    overflow: hidden;
    margin-bottom: 0.2rem;
    height: 60%;
}

.desc .supra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fff0 30%, #fff 100%);
}

@media only screen and (max-width: 1024px) {
    .cartea {
        flex-direction: column;
        flex-flow: column-reverse;

        width: 100%;
        max-width: 470px;
        height: fit-content;
        padding: 32px 22px;
    }

    .cartea img {
        width: 100%;
    }

    .continut {
        width: 100%;
        gap: 0.5rem;
    }
}