/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
/* Generel resæt for at undgå GeneratePress standard margin conflicts */
.news-archive-wrapper {
    margin-top: 2rem;
}

/* --- KATEGORI HEADER (Byens navn) --- */
.city-news-header {
    background-color: #1e293b; /* Dyb, professionel blå/grå */
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.city-news-header .header-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #cbd5e1;
    display: block;
    margin-bottom: 0.5rem;
}
.city-news-header .city-title {
    font-size: 3rem;
    margin: 0;
    color: #ffffff;
    font-weight: 800;
}

/* --- NYHEDSKORT (Fælles for alle) --- */
.news-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.news-image-link {
    display: block;
    overflow: hidden;
}
.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Sikrer at billedet udfylder rammen */
    aspect-ratio: 16 / 9; /* Tvinger et professionelt tv/nyheds-format */
    transition: transform 0.3s ease;
}
.news-card:hover .news-img {
    transform: scale(1.05); /* Lækker hover-effekt på billedet */
}
.news-content {
    padding: 1.5rem;
}
.news-title {
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}
.news-title a {
    color: #0f172a;
    text-decoration: none;
}
.news-title a:hover {
    color: #2563eb; /* Blå nyheds-farve */
}
.news-meta {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- TOPNYHED (Featured) --- */
.top-story {
    display: grid;
    grid-template-columns: 3fr 2fr; /* Billedet fylder mere end teksten */
    margin-bottom: 2.5rem;
}
.top-story .news-img {
    aspect-ratio: 16 / 10;
    height: 100%;
}
.top-story .news-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.top-story .news-title {
    font-size: 2.2rem;
}
.news-excerpt {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.read-more-btn {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
    transition: background-color 0.2s;
}
.read-more-btn:hover {
    background-color: #1d4ed8;
    color: #fff;
}

/* --- GRID (Resten af nyhederne) --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.regular-story .news-title {
    font-size: 1.25rem;
}

/* --- MOBIL TILPASNING --- */
@media (max-width: 900px) {
    .top-story {
        grid-template-columns: 1fr;
    }
    .top-story .news-content {
        padding: 1.5rem;
    }
    .top-story .news-title {
        font-size: 1.5rem;
    }
    .city-news-header .city-title {
        font-size: 2rem;
    }
}