/* Newspaper Style for InfoUruguay */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary-color: #d72323; /* Un rojo clásico de periódico */
    --dark-color: #222831;
    --light-color: #ffffff;
    --gray-color: #eeeeee;
    --font-serif: 'Playfair Display', serif;
    --font-sans-serif: 'Lato', sans-serif;
}

body {
    font-family: var(--font-sans-serif);
    background-color: var(--light-color);
    color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.navbar {
    border-bottom: 1px solid var(--gray-color);
}

.main-headline {
    border-bottom: 1px solid var(--gray-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    border: none;
    border-bottom: 1px solid var(--gray-color);
    margin-bottom: 1.5rem;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget h5 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 2rem 0;
}

.footer a {
    color: var(--light-color);
}

.hero-section {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
}

.hero-content-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 0.5rem;
}

.article-card-secondary {
    border-bottom: 1px solid var(--gray-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.article-card-secondary img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.article-card-secondary .card-title {
    font-size: 1.1rem;
}

