/* 1. Archive Container Setup */
.post-type-archive-news .news-section {
    padding: 80px 0;
    background-color: #000000; /* Deep Black Background */
}

.post-type-archive-news .news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. Construction Yellow Header Marker */
.post-type-archive-news .news-header {
    margin-bottom: 50px;
    border-left: 6px solid #FFD700; /* The Yellow Side Marker */
    padding-left: 25px;
}

.post-type-archive-news .news-header p {
    color: #FFD700; /* Industrial Yellow */
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.post-type-archive-news .news-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0;
}

/* 3. News Grid Layout */
.post-type-archive-news .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* 4. Industrial News Card */
.post-type-archive-news .news-card {
    background: #111111; /* Dark Grey Card */
    border: 1px solid #222222;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.post-type-archive-news .news-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

/* 5. Image Wrap & Date Badge */
.post-type-archive-news .news-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.post-type-archive-news .news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-type-archive-news .news-card:hover .news-img {
    transform: scale(1.05);
}

.post-type-archive-news .date-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #FFD700;
    color: #000000; /* High Contrast Black text */
    padding: 8px 16px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
    z-index: 10;
}

/* 6. Content & Metadata */
.post-type-archive-news .news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-type-archive-news .news-meta {
    color: #FFD700;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: inline-block;
}

.post-type-archive-news .news-categories {
    color: #777777;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
}

.post-type-archive-news .news-content h3 {
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.post-type-archive-news .news-content p {
    color: #AAAAAA;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* 7. Yellow Read More Link */
.post-type-archive-news .read-more {
    margin-top: auto;
    color: #FFD700;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.post-type-archive-news .read-more:hover {
    color: #FFFFFF;
    gap: 15px;
}
