/*
 * HelloCoffee AutoPilot stylesheet
 *
 * Provides simple, elegant styling for single job listing pages imported by
 * the HelloCoffee AutoPilot plugin. These rules are intentionally scoped
 * using the `hellocoffee-` prefix to avoid conflicting with theme styles.
 */

.hellocoffee-listing {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hellocoffee-featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.hellocoffee-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.hellocoffee-open-status {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #333333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.hellocoffee-listing-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #222222;
}

.hellocoffee-listing-location,
.hellocoffee-listing-phone,
.hellocoffee-listing-website,
.hellocoffee-open-hours {
    margin: 4px 0;
    font-size: 16px;
    color: #555555;
}

.hellocoffee-listing-website a {
    color: #0073aa;
    text-decoration: underline;
}

.hellocoffee-listing-website a:hover {
    color: #005177;
}

.hellocoffee-listing-content {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
}

/* Map container styling */
.hellocoffee-map {
    margin-top: 24px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hellocoffee-listing-footer {
    margin-top: 20px;
}