:root {
    --gray: #D4D4D4;
    --red: #CC1114;
    --dark: #111;
    --light: #f5f3ee;
    --bone: #F3F2ED;
    --bg-gray: #F3F5F8;
}

.r_publicidad {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(150, 150, 150, 0.1));
    background-image: repeating-linear-gradient(45deg,
            /* Ángulo de las líneas */
            rgba(0, 0, 0, 0.05) 0px, rgba(0, 0, 0, 0.05) 5px, rgba(255, 255, 255, 0) 5px, rgba(255, 255, 255, 0) 10px);
    background-size: 200% 200%;
    animation: diagonal-lines 8s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.input-buscador {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    padding: 8px 14px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    gap: 8px;
}

.input-buscador .iter-button.iter-button-submit .iter-button-content {
    display: flex;
}

.input-buscador .iter-field {
    flex: 1;
}

.input-buscador .iter-field-content,
.input-buscador .iter-field-element {
    display: block;
    width: 100%;
}

.input-buscador .iter-field-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    color: #6b7280;
    background: transparent;
    font-family: inherit;
}

.input-buscador .iter-field-input::placeholder {
    color: #9ca3af;
}

.input-buscador .iter-button-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.input-buscador .iter-button-content {
    position: relative;
}

.input-buscador .iter-button-input-submit {
    width: 22px;
    height: 22px;
    border: none;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.5' y1='16.5' x2='22' y2='22'/%3E%3C/svg%3E") center/contain no-repeat;
    cursor: pointer;
    font-size: 0;
    color: transparent;
    padding: 0;
    outline: none;
}

.sect-date {
    display: flex;
    gap: 8px;
    align-items: center;
}


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

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

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


.c_003_023 .media_block {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: center;
}

.c_003_023 .media_block h2 {
    font-size: 20px;
}


.c_003_023 .noticias .element {
    border-bottom: 1px solid var(--gray);
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.c_003_023 .searchHeader {
    margin-top: 10px;
}

.c_003_023 .searchHeader h2 {
    font-size: 16px;
}

.c_003_023 .searchHeader .keyword {
    color: var(--red);
}


.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: 36px;
}

.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);
}

.c_003_023 .nav-button {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

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

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

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


@media (max-width: 991px) {
    .c_003_023 .nav-button ul {
        gap: 10px;
    }

    .c_003_023 .nav-button {
        gap: 12px;
        justify-content: center;
    }

    .c_003_023 .next-button,
    .c_003_023 .prev-button {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .c_003_023 .media_block h2 {
        font-size: 16px;
    }

    .c_003_023 .media_block {
        gap: 16px;
    }
}