
#fullwidth {
    background:  var(--color-palette-jacarta-light);
}

.post-container{
    display: flex;
    gap: 72px;
    padding-left: 136px;
    padding-top: 40px;
}

.post-banner {
    aspect-ratio: 2.93 / 1;
}

.post-title{
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.post-title h1 {
    max-width: 800px;
    color: var(--color-palette-soap-light);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 59.861px;
}

@media (max-width: 600px){
    .post-banner{
        aspect-ratio: 430 / 474;
        padding: 27px;
    }

    .post-title h1 {
        font-size: 40px;
        line-height: 48px;
    }
}

.post-description {
    color: #2D082E;
    font-family: "Red Hat Display";
}

.post-description p, .post-description ul, .post-description span {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.3px;
}
.more-posts {
    color: #2D082E;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 125% */
    letter-spacing: -0.36px;
}

.more-post-card img {
    aspect-ratio: 127 / 83;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
}

.more-post-card p {
    color: var(--color-palette-soap-dark-active);
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px; /* 135% */
    letter-spacing: -0.3px;
    margin-top: 23px;
}

.more-post-card:hover {
    text-decoration: none;
}

.table-of-contents {
    width: 430px;
    border-radius: 16px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
    padding-left: 70px;
    padding-top: 40px;
    max-width: 430px;
    background-color: #fff;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.table-of-contents h5,  #dropdown-toc h5 {
    color: var(--color-palette-dark-purple-normal);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 200% */
    letter-spacing: -0.27px;
}

.table-of-contents h4, #dropdown-toc h4 {
    color: var(--color-palette-soap-dark);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 112.5% */
    letter-spacing: -0.48px;
    margin-bottom: 52px;
}

#dropdown-toc {
    background: linear-gradient(to bottom, rgb(237 234 240 / 86%) 0%, rgba(237, 234, 240, 0.8) 50%, rgba(237, 234, 240, 0.3) 100%);
    backdrop-filter: blur(35.5px);
    -webkit-backdrop-filter: blur(35.5px);
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    z-index: 100;
    position: absolute;
    left: 0;
    right: 0;
}

.table-of-contents-title-movil h4{
    color: var(--color-palette-soap-dark);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0px;
}

.table-of-contents li, #dropdown-toc li,  .table-of-contents li a,  #dropdown-toc li a{
    color: var(--color-palette-dark-purple-normal);
    font-size: 18px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.27px;
}

.table-of-contents-dropdown {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(35.5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #2C2C2C;
    z-index: 999;
}

.table-of-contents-title-movil {
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px;
}

.movil-table {
    background: none;
    border: none;
    display: flex;
}

@media (min-width: 600px) and (max-width: 960px) {
    .post-banner{
        aspect-ratio: 430 / 280;
        padding: 35px;
        min-height: 474px;
    }

    .post-title h1 {
        font-size: 43px;
        line-height: 48px;
    }
}

@media (max-width: 1200px) {
    .post-container {
        padding: 27px;
    }
}


/* Opcional: limitar a 2 líneas en móviles */
@media (max-width: 768px) {
    .post-title h1{
       font-size: 30px!important;
       line-height: normal!important;
       display: -webkit-box;
        -webkit-line-clamp: 4; /* Cambia el número de líneas que quieras */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}