:root {
    --orange-supbyte: #ffa500;
    --blue1-supbyte: #04102b;
    --blue2-supbyte: #082256;
    --grey1-supbyte: #333333;
    --grey2-supbyte: #7f7f7f;
    --white-supbyte: #ffffff;
    --black-supbyte: #000000;
    --purple-supbyte: #5232ed;
    --sky-supbyte: #3d88e3;
    --green-supbyte: #07dd58;
  }

  /* .post--entry {
    background-image: url('/img/insta-fondo17.jpeg');
  } */

.post {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:transparent;

    width: 80%; /* Ajusta el ancho total según tus necesidades */
    max-width: 1140px;
    margin: 0 auto; /* Centra horizontalmente */
    padding: 1em;

    opacity: 0;
    transform: translateX(-20px);
    transition: transform 1s ease-out, opacity 1s ease;

}

.post--entry{
    opacity: 1;
    transform: translateX(0);
}

.post-left {
    flex: 1;
    background-color: #212121 ;
    color: var(--white-supbyte);
    padding: 2em;
    text-align: center;
    border-radius: 5px;


}

.post-left_title {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Josefin Sans', sans-serif;
}

.post-left_title_sub {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 0.25em;
    font-family: 'Montserrat', sans-serif;
}

.post-left_border {
    border: 2px solid var(--green-supbyte);
    width: 100%;
    margin-top: 1em;
}

.post-left_author {
    margin-top: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-left_author img {
    width: 1.5em;
    margin-right: 0.5em;
    border: 2px solid #FEFEFE;
    border-radius: 50%;
}

.post-right {
    flex: 2;
    background-color: transparent;
    padding: 2em;
    text-align: center;
}

.post-right-text {
    line-height: 2;
    color: rgb(0, 0, 0);
}

.post-right-text p {
    font-size: 20px;
    font-weight: bold;
    margin-top: 1em;
    font-family: 'Montserrat', sans-serif;
}

.post-right-text p span {
    font-size: 30px;
}




/* Estilos para pantallas más pequeñas, por ejemplo, dispositivos móviles */
@media (max-width: 768px) {
    .post {
        flex-direction: column; /* Cambia la dirección de flex a columna */
        width: 90%; /* Reduce el ancho para adaptarse a pantallas más pequeñas */
    }

    .post-left {
        flex: none; /* Establece el ancho fijo para .post-left */
        width: 100%; /* Ocupa todo el ancho disponible */
    }

    .post-right {
        flex: none; /* Establece el ancho fijo para .post-right */
        width: 100%; /* Ocupa todo el ancho disponible */
        margin-top: 1em; /* Agrega espacio entre .post-left y .post-right */
    }

    .post-left_title {
        font-size: 18px; /* Reduce el tamaño del título */
    }

    .post-left_title_sub {
        font-size: 14px; /* Reduce el tamaño del subtítulo */
    }
}
