/* Más Noticias Section */
.mas-noticias-container {
    margin: 0 auto;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
}

.title-bar {
    width: 6px;
    height: 50px;
    background: #E20145;
    border-radius: 3px;
}

.news-grid {
    display: grid;
    grid-template-columns: 3fr 4fr;
    gap: 40px;
}

/* Featured Card */
.featured-card {
    height: auto;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #e6effd;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.featured-header {
    height: 445px;
    position: relative;
    overflow: hidden;
}

.featured-header__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.header-content {
    display: flex;
    padding: 40px 35px 30px 35px;
    position: relative;
    z-index: 1;
}

.left-side {
    flex: 0 0 auto;
    margin-right: 25px;
    position: relative;
}

.circle-icon {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.spiral-svg {
    width: 160px;
    height: 160px;
}

.spiral-line {
    fill: none;
    stroke: #8B2C38;
    stroke-width: 20;
    stroke-linecap: round;
}

.corner-spiral {
    position: absolute;
    bottom: -20px;
    left: -15px;
    width: 110px;
    height: 110px;
}

.corner-arc {
    fill: none;
    stroke: white;
    stroke-width: 22;
    stroke-linecap: round;
}

.right-side {
    flex: 1;
    padding-top: 15px;
}

.main-title {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 15px;
}

.subtitle-text {
    color: white;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 25px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rooster-svg {
    width: 65px;
    height: 65px;
}

.rooster-fill {
    fill: white;
}

.hjck-brand {
    font-size: 2.375rem;
    font-weight: 900;
    color: white;
    letter-spacing: 3px;
}

.wave-section {
    height: 80px;
    position: relative;
    margin-top: 20px;
}

.wave-svg {
    width: 100%;
    height: 80px;
    position: absolute;
    bottom: 0;
}

.wave-path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 2.5;
}

.gray-bar {
    background: #FFFFFF;
    padding: 22px 35px;
    text-align: center;
    border-top: 1px solid #E6EFFD;
    border-bottom: 1px solid #E6EFFD;
}

.gray-text {
    color: #000;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}

.featured-content {
    height: auto;
    padding: 40px 20px;
    background: white;
    display: flex;
    flex-direction: column;
}

.date {
    color: #4b4b4b;
    font-size: 22px;
    margin-bottom: 35px;
}

.content-title {
    color: #3366cc;
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 35px;
    text-decoration: underline;
    display: block;
    cursor: pointer;
    transition: color 0.3s ease;
}

.content-title:hover {
    color: #264d99;
    text-decoration: underline;
}

.content-text {
    color: #4b4b4b;
    font-size: 27px;
    line-height: 1.4;
    text-align: justify;
}

/* Small Cards */
.right-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.small-card {
    height: 295px;
    display: flex;
    border-radius: 32px;
    border: 1px solid #8ae2f0;
    box-shadow: none;
    transition: transform 0.3s ease;
    cursor: pointer;
    background: white;
    overflow: hidden;
}

.small-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(138, 226, 240, 0.3);
}

.small-card-image {
    width: 42%;
    min-width: 200px;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.small-card-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.small-card-content {
    height: 100%;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    overflow: hidden;
}

.small-card-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #3366cc;
    margin-bottom: 20px;
    line-height: 1.3;
    text-decoration: underline;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.small-card-title:hover {
    color: #264d99;
    text-decoration: underline;
}

.small-card-description {
    font-size: 23px;
    color: #4b4b4b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .news-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .right-cards {
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 950px) {
    .small-card {
        width: 100%;
        flex-direction: column;
        height: auto;
    }

    .small-card-image {
        width: 100%;
        height: 250px;
    }

    .small-card-content {
        width: 100%;
        height: auto;
        padding: 30px;
    }
}

@media (max-width: 700px) {
    .section-title {
        font-size: 2rem;
    }

    .featured-card {
        width: 100%;
        height: auto;
    }

    .featured-header {
        width: 100%;
        height: auto;
        min-height: auto;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .left-side {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .circle-icon {
        width: 150px;
        height: 150px;
    }

    .spiral-svg {
        width: 120px;
        height: 120px;
    }

    .right-side {
        padding-top: 0;
    }

    .main-title {
        font-size: 2.25rem;
    }

    .subtitle-text {
        font-size: 1rem;
    }

    .hjck-brand {
        font-size: 1.75rem;
    }

    .featured-content {
        width: 100%;
        height: auto;
        padding: 40px 30px;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .content-text {
        font-size: 18px;
    }

    .small-card-title {
        font-size: 1.25rem;
    }

    .small-card-description {
        font-size: 16px;
    }

}

