:root {
    --gray: #D4D4D4;
    --red: #CC1114;
    --dark: #111;
    --light: #f5f3ee;
    --bone: #F3F2ED;
    --bg-gray: #F3F5F8;
}
body {
  font-family: 'Zalando Sans', sans-serif;
}
div#iter-content-wrapper {
    margin-top: 50px;
}
.row>*{
    padding-left: 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    font-size: 13px;
    line-height: 16px;
    border-bottom: 1px solid var(--gray);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
}

.section-title a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(60%);
    height: 4px;
    width: 30px;
    background: var(--red);
}

.info-autor{
    background: var(--bone);
    padding: 36px;
    margin-bottom: 3rem;
}

.info-autor .IMGINST_TITINST{
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 25px;
}

.info-autor .IMGINST_TITINST .media_block{
    width: 185px;
    margin-bottom: 0 !important;
}

.info-autor .media_block img {
    border-radius: 50%;
    width: 150px !important;
    height: 150px !important;
    margin: 0;
    padding: 0;
}

.info-autor .headline{
    font-size: 40px;
    font-weight: 500;
}

.article-section .section {
    background: var(--bg-gray);
    padding: 8px;
    font-size: 13px;
}

.date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 15px;
}

.date::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--red);
    /* rojo */
    border-radius: 50%;
    display: inline-block;
}

.cronologia{
    padding-right: 5rem;
}

.cronologia article{
    margin-bottom: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--gray);
}

.cronologia .headline h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
}

.text_read_more{
    background: var(--red);
    width: 120px;
    padding: 4px;
    border-radius: 30px;
    text-align: center;
}

.text_read_more a{
    color: white;
    font-size: 12px;
    font-weight: 500;
}

.text_block2 p{
    font-size: 14px;
    font-weight: 400;
}

.cronologia .article:last-child {
    padding-bottom: 24px;
    margin-bottom: 60px;
    border-bottom: none;
}

.cronologia .nav-button {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.cronologia .nav-button ul {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cronologia .nav-button ul li {
    cursor: pointer;
    padding: 0 5px;
}

.cronologia .next-button,
.cronologia .prev-button {
    padding: 8px 10px;
    border-radius: 4px;
    background: var(--red);
    font-size: 14px;
    color: #fff;
    cursor: pointer;

}

.cronologia .nav-page-selected {
    color: var(--red);
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .info-autor .headline {
        font-size: 22px;
    }
    .cronologia .headline h2 {
        font-size: 18px;
    }
    .info-autor {
        padding: 20px;
    }

    .cronologia{
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }
}