/* 
 * BULLETIN CUSTOM - Personalizaciones para Heskala
 * Edita este archivo para hacer cambios sin tocar style.css
 */

:root {
    /* Cambia estos valores para personalizar el tema */
    --color-primary: #1f2937;
    --color-secondary: #6b7280;
    --color-accent: #3b82f6;
    --color-border: #e5e7eb;
}

/* 
 * LISTADO VERTICAL DE ARTÍCULOS EN COLUMNA DERECHA
 */

.gh-articles-list-vertical {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.gh-articles-list-header {
    padding: 2.5rem 2rem !important;
    border-bottom: 1px solid var(--color-border) !important;
    flex-shrink: 0 !important;
}

.gh-articles-list-header .gh-articles-list-title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: var(--color-primary) !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.gh-articles-list-container {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 1.5rem 0 !important;
}

.gh-article-list-item {
    display: flex !important;
    gap: 2rem !important;
    padding: 2rem 2rem !important;
    border-bottom: 1px solid var(--color-border) !important;
    transition: background-color 0.2s ease !important;
    cursor: pointer !important;
}

.gh-article-list-item:hover {
    background-color: #f3f4f6 !important;
}

.gh-article-list-image {
    width: 120px !important;
    height: 120px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.gh-article-list-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.gh-article-list-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.gh-article-list-content .gh-article-list-title {
    margin: 0 0 1rem 0 !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
}

.gh-article-list-title {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
}

.gh-article-list-title a {
    color: var(--color-primary) !important;
    text-decoration: none !important;
    font-size: 1.6rem !important;
}

.gh-article-list-title a:hover {
    color: var(--color-accent) !important;
}

.gh-article-list-meta {
    display: flex !important;
    gap: 1.5rem !important;
    font-size: 1.2rem !important;
    color: var(--color-secondary) !important;
}

.gh-article-list-author {
    font-weight: 600 !important;
    font-size: 1.2rem !important;
}

/* Scrollbar personalizado */
.gh-articles-list-container::-webkit-scrollbar {
    width: 10px !important;
}

.gh-articles-list-container::-webkit-scrollbar-track {
    background: transparent !important;
}

.gh-articles-list-container::-webkit-scrollbar-thumb {
    background: var(--color-border) !important;
    border-radius: 4px !important;
}

.gh-articles-list-container::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary) !important;
}

/* RESPONSIVE - Desktop */
@media (min-width: 1200px) {
    .gh-articles-list-header .gh-articles-list-title {
        font-size: 3rem !important;
    }

    .gh-article-list-title {
        font-size: 1.6rem !important;
    }

    .gh-article-list-title a {
        font-size: 1.6rem !important;
    }

    .gh-article-list-meta {
        font-size: 1.2rem !important;
    }
}

/* RESPONSIVE - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .gh-articles-list-container {
        max-height: 60vh !important;
    }

    .gh-article-list-item {
        padding: 1.5rem !important;
        gap: 1.5rem !important;
    }

    .gh-article-list-image {
        width: 100px !important;
        height: 100px !important;
    }

    .gh-articles-list-header .gh-articles-list-title {
        font-size: 2.5rem !important;
    }

    .gh-article-list-title,
    .gh-article-list-title a {
        font-size: 1.4rem !important;
    }

    .gh-article-list-meta {
        font-size: 1.1rem !important;
    }
}

/* RESPONSIVE - Mobile */
@media (max-width: 768px) {
    .gh-home {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }

    .gh-articles-list-vertical {
        height: auto !important;
    }

    .gh-articles-list-header {
        padding: 2rem !important;
    }

    .gh-articles-list-header .gh-articles-list-title {
        font-size: 2.2rem !important;
    }

    .gh-articles-list-container {
        max-height: 70vh !important;
        padding: 1rem 0 !important;
    }

    .gh-article-list-item {
        display: flex !important;
        gap: 1.5rem !important;
        padding: 1.5rem !important;
    }

    .gh-article-list-image {
        width: 90px !important;
        height: 90px !important;
    }

    .gh-article-list-title,
    .gh-article-list-title a {
        font-size: 1.3rem !important;
    }

    .gh-article-list-meta {
        font-size: 1.1rem !important;
    }
}

/* RESPONSIVE - Mobile pequeño */
@media (max-width: 480px) {
    .gh-articles-list-header {
        padding: 1.5rem !important;
    }

    .gh-articles-list-header .gh-articles-list-title {
        font-size: 1.8rem !important;
    }

    .gh-article-list-item {
        padding: 1rem 1.5rem !important;
        gap: 1rem !important;
    }

    .gh-article-list-image {
        width: 70px !important;
        height: 70px !important;
    }

    .gh-article-list-title,
    .gh-article-list-title a {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .gh-article-list-meta {
        font-size: 1rem !important;
    }
}
