/* Home Featured Posts Styles */
.columnists-container {
    display: flex;
    gap: 20px;
}

.columnists-container a {
    color: inherit;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.columnists-container a:hover {
    text-decoration: underline;
    color: inherit;
}

.featured-entry {
    width: 926px;
    height: 540px;
    position: relative;
    color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.featured-entry > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-entry .entry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.featured-entry .entry-details {
    position: absolute;
    bottom: 55px;
    left: 50px;
    right: 50px;
    z-index: 2;
}

.featured-entry .entry-meta {
    margin: 0 0 10px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-entry .entry-meta a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.featured-entry .entry-meta span {
    font-size: 15px;
    display: flex;
    align-items: center;
}

.featured-entry .entry-title-wrapper {
    display: flex;
    align-items: stretch;
    margin-top: 10px;
    gap: 10px;
}

.featured-entry .entry-line {
    width: 5px;
    background-color: #ff5100;
}

.featured-entry h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.featured-entry h2 a {
    color: inherit;
    text-decoration: none;
}

.secondary-entries {
    width: 290px;
    display: flex;
    flex-direction: column;
    height: 540px;
    justify-content: space-between;
}

.secondary-entry {
    position: relative;
    color: #fff;
    width: 290px;
    height: 175px;
    border-radius: 5px;
    overflow: hidden;
}

.secondary-entry > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secondary-entry .entry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.secondary-entry .entry-details {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    padding: 0 5px;
}

.secondary-entry h2 {
    font-size: 16px;
    font-weight: 500;
    margin: 5px 0;
}

.secondary-entry h2 a {
    color: inherit;
    text-decoration: none;
}

.secondary-entry .entry-meta {
    margin: 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.secondary-entry .entry-meta a {
    color: #fff;
    text-decoration: none;
}

/* Mobile Version */
.h-home-mobile {
    box-sizing: border-box;
}

.h-home-featured {
    margin-bottom: 20px;
    text-align: left;
}

.h-home-featured .image-container {
    width: 100%;
    max-width: 394px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

.h-home-featured .image-container > img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.h-home-featured h2 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 10px 0;
    line-height: 1.4;
}

.h-home-featured h2 a {
    color: inherit;
    text-decoration: none;
}

.h-home-featured h2 a:hover {
    color: #ff5100;
}

.h-home-featured-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #595959;
    margin-top: 5px;
}

.h-home-featured-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.columnistas-mobile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 10px;
}

.mobile-post {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-post .image-container {
    width: 130px;
    height: 76px;
    border-radius: 5px;
    overflow: hidden;
}

.mobile-post > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-post h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.mobile-post h3 a {
    color: #000;
    text-decoration: none;
}

.mobile-post .meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #595959;
}

.mobile-post .meta a {
    color: #595959;
    font-weight: 500;
    text-decoration: none;
}

.date img, .meta img, .entry-meta img, .h-home-featured-meta img, .noticia-date img {
    width: 14px !important;
    height: 14px !important;
    object-fit: contain;
    display: inline-block;
}

