.banner h1 {
    font-size: 31px;
    margin-bottom: 1.5rem;
}

/* Container for the fields to give them some breathing room */
.field--label-inline {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.field--label-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: var(--aff-green);
}

/* Styling the Label (e.g., Closing Date, Duty Station) */
.field__label {
    font-weight: 300;
    color: var(--aff-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px; /* Ensures labels align vertically */
    position: relative;
}

/* Adding a small vertical divider between label and item */
.field__label::after {
    content: "|";
    color: #ccc;
    margin-left: 15px;
    font-weight: 300;
}

/* Styling the Item value */
.field__item {
    font-size: 1.1rem;
    color: var(--text-color);
    padding-left: 15px;
    font-weight: 300;
}

/* Specific styling for the Closing Date time element */
.datetime {
   
    font-weight: 500;
}

/* Duty Station specific color */
.field--name-field-duty-station .field__item {
    color: var(--aff-green);
}
.banner.prg {
    position: relative;
    /* Use the forestry image generated earlier as the background */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 350px; /* Gives the banner more presence */
    display: flex;
    align-items: center;
    padding: 60px 0;
    color: #ffffff;
    overflow: hidden;
}

/* Dark overlay to make white text pop regardless of the background image */
.banner.prg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.banner.prg .container {
    position: relative;
    z-index: 2; /* Ensures text stays above the overlay */
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.banner.prg h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

/* Small accent line under the title for a professional touch */
.banner.prg h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #81c784; /* AFF accent green */
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .banner.prg h1 {
        font-size: 1.8rem;
    }
    .banner.prg {
        min-height: 250px;
    }
}