.post-tldr {
    background-color: #D41028;
    padding: 50px 40px;
    margin: 122px -40px 40px;
    position: relative;
}

.post-tldr::before{
    content: "";
    position: absolute;
    top: -92px;
    left: 0;
    width: 138px;
    height: 92px;
    background: url(/wp-content/uploads/2026/04/Group-1000007369.svg) no-repeat center center;
    background-size: contain;
    z-index: 57;
}

.post-tldr::after{
    content: "";
    position: absolute;
    bottom: -92px;
    right: 0;
    width: 92px;
    height: 92px;
    background: url(/wp-content/uploads/2026/03/Group-1000007218.svg) no-repeat center center;
    background-size: contain;
    z-index: 57;
}

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

.post-tldr .post-tldr__title {
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -2%;
    padding: 0;
    margin: 0 0 23px 0;
    color: #FFF;
}

.post-tldr__summary {
    list-style: none;
    padding: 0;
    margin: 0 0 23px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.post-tldr .post-tldr__summary-item {
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #FFF;
}

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

.post-tldr__card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 226px;
    justify-content: space-between;
}

.post-tldr__card-logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.post-tldr__card-logo img {
    max-height: 40px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    object-position: left center;
}

.post-tldr .post-tldr__card-description {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #000000;
}

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

@media screen and (max-width: 600px) {
    .post-tldr {
        padding: 48px 0;
    }

    .post-tldr__title {
        font-size: 36px;
    }

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

    .post-tldr__card {
        gap: 16px;
    }
}
