.left-column,
.right-column {
    visibility: visible;
    gap: 1rem;
    display: inline-block;
}

.left-column {
    margin-right: 0rem;
    padding-right: 5px;
}

.right-column {
    padding: 0em;
    background-color: var(--background-color);
    box-shadow: none;
}

.content {
    padding: 1em;
}

.content_overview {
    width: 100%;
    border: 1px solid var(--gray-border-nav);
    border-radius: 8px;
    background: var(--white);
    line-height: 1.5;
    flex-basis: 75%;
}

.content_jobs {
    width: 100%;
    border: 1px solid var(--gray-border-nav);
    border-radius: 8px;
    background: var(--white);
    line-height: 1.5;
    flex-basis: 75%;
}


.stock_image {
    width: 80%;
    align-self: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 1em auto 0.75rem auto;
}

.ambassador_image {
    width: 60%;
    align-self: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 1em auto 0.75rem auto;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .45);
}

/* override ambassador_card p's font size and weight */
.ambassador_name {
    font-weight: bold !important;
    text-decoration: underline;
    font-size: 1em !important;
}

.ambassador_card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-border-nav);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
    padding-bottom: 1rem;
}

.ambassador_header {
    background: var(--green-light);
    padding: 0.75rem 1rem;
    font-size: 1em;
    color: var(--green-dark);
}

.ambassador_card p {
    display: block;
    margin-block-start: 1em;
    margin-inline-start: 0px;
    font-weight: normal;
    font-size: 0.80rem;
    line-height: 0.90;
    padding-left: 1em;
    padding-right: 1em;
}

.spacer {
    height: 1em;
}

.breadcrumb_bar {
    display: flex;
    justify-content: left;
    align-items: center;
    position: relative;
    padding: 0.60rem 1rem;
    overflow: hidden;
    background: var(--green-light);
    color: var(--green-dark);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 1em;
}

.breadcrumb_separator {
    margin: 0 8px;
}

.back_button {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
}

.back-arrow {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.county_summary {
    font-size: 1rem;
}

.quick-facts {
    background: var(--gray-subtle);
    padding: 1rem;
    border: 1px solid var(--gray-border-light);
    border-radius: 5px;
    margin-top: 1.25rem;
}

.quick-facts h3 {
    text-decoration: underline;
}

#job_list {
    padding: 1em;
}

.job-item {
    background: var(--green-offwhite);
    border: 1px solid var(--green-dark);
    padding: 1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 10px;
    border-radius: 4px;
}

.job-item a {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 4px;
    transition: background 0.2s ease;
    text-decoration: none;
}

.job-item a:hover {
    background: var(--green-hover);
}


.job h3 {
    background: var(--green-light);
    padding: 0.75rem 1rem;
    font-size: 1em;
    color: var(--green-dark);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.job-item h4 {
    color: var(--green-dark);
}

@media (max-width: 768px) {

    main {
        flex-direction: column;
        padding: 1rem;
    }

    .left-column {
        flex-basis: auto;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .right-column {
        flex-basis: auto;
        width: 100%;
        padding: 1rem;
        box-shadow: none;
    }

}
