
    p, *{
        font-size: 16px;
        line-height: 32px;

    }
    body{
        background-color:#f6f6f6;
    }
    .img-responsive{
        width: 100%;
    }
    .container{
        width: 80%;
    }
    .single-section{
        width:70%;
        margin: 0 auto;
        padding: 40px 0;
    }
    .hero {
      position: relative;
      height: 350px; /* Altura completa de la pantalla */
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom:60px;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Opacidad (negra) */
      z-index: 1;
    }
    .hero .hero-text {
      position: relative;
      z-index: 2;
      color: white;
      width: 70%;
      text-align: center;
    }
    .hero .hero-text h1 {
        font-weight: 300;
        font-family: "Roboto", serif;
        font-size: 2em;
        text-transform: uppercase;
        color: #fff;
        letter-spacing: 4px;
        line-height: 1.2em;
      margin-bottom: 20px;
    }
    .hero-text hr{
        border: 1px solid #fff;
        color: #fff;
        opacity: unset;
        width: 35%;
        margin: 0 auto;
    }
    .aside-blog{
        background: #f6f6f6;
        padding: 20px;
        border-radius: 20px;
        position: sticky;
        top: 30px; 
    }
    .author-box{
        gap: 0px;
        width: 50%;
        align-items: center;
        margin-bottom: 20px;
    }
    .author-box img{
        width: 15%;
    }
    .author-box p{
        margin: 0;
        font-weight: 700;
        font-size:14px;
        color: #e93c43; 
        font-family: "Lato", sans-serif;
    }
    section h2{
        color: #a08e6c;
        font-weight: 700;
        font-family: "Raleway", sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: left;
    }
    section h2:after {
        content: ' ';
        display: block;
        background: #a08e6c;
        height: 2px;
        bottom: -1px;
        left: 0;
        width: 80px;
    }


.recent-post{
    border-radius: 10px;
    position: relative;
    height: 234px;
    background-size: cover !important;
}
.recent-post p{
    position: absolute;
    bottom: 5px;
    padding: 0px 15px;
}
.recent-post p a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 2px;
    display: block;
    line-height: 130%;
}
.recent-post-container{
    padding-top: 10px;
    display: flex;
    gap: 20px;
}
.recent-post-section h3{
    font-weight: 400;
    font-family: 'Miller Display';
    font-size: 35px;
    margin-bottom: 0px;
    color: #333;
    opacity: 0.9;
}
.recent-post-section hr{
    border: 1px solid #c1aa7f;
    opacity: 1;
    margin: 10px 0 20px;
    width: 20%;
}