/* Full Width Hero */
.custom-category-hero-fullwidth-1f322d07 {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 350px;
    background-image: repeating-linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111), repeating-linear-gradient(45deg, #111 25%, #0a0a0a 25%, #0a0a0a 75%, #111 75%, #111);
    background-size: 15px 15px;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-overlay-1f322d07 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content-1f322d07 {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-content-1f322d07 h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800; /* Keeping hero title bold as per typical design, but let me know if this should be 600 too */
    font-family: Impact, "Arial Black", sans-serif;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.category-count-1f322d07 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

/* Max Width Constraints */
body.custom-blog-archive-1f322d07 main, 
body.custom-blog-archive-1f322d07 .site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* List/Grid Container */
.archive-list-container-1f322d07 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    width: 100%;
}

@media(min-width: 768px) {
    .archive-list-container-1f322d07 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media(min-width: 1024px) {
    .archive-list-container-1f322d07 {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Article Card Structure */
.custom-list-article-1f322d07 {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-list-article-1f322d07 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.card-content-wrapper-1f322d07 {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* New Meta Data (Top) */
.article-meta-header-1f322d07 {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-family: sans-serif;
}

/* Title */
.custom-list-article-1f322d07 .entry-title {
    font-size: 1.4rem;
    font-weight: 600; /* Reduced as requested */
    color: #0e643b;
    margin: 0 0 15px 0;
    line-height: 1.2;
    font-family: Impact, "Arial Black", sans-serif;
    letter-spacing: 0.5px;
    text-transform: none;
}

.custom-list-article-1f322d07 .entry-title a {
    color: #0e643b;
    text-decoration: none;
}

/* Author Info */
.author-info-1f322d07 {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-family: sans-serif;
    font-weight: 600; /* Added slight weight to match typical author lines */
}

/* Read More Link */
.read-more-link-1f322d07 {
    color: #7ab529;
    font-weight: 600; /* Adjusted from bold to match request */
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    font-family: sans-serif;
}

.read-more-link-1f322d07:hover {
    color: #5c8b1d;
}