/* WNMU Locations */

.wnmu-locations-hero {
    margin-top: 110px;
    padding: 150px 15px;
    background-color: #42196F;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wnmu-locations-hero .tp-breadcrumb__title {
    color: #fff !important;
}

.wnmu-locations .wnmu-body {
    padding: 48px 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

/* Category sections */
.wnmu-locations-section {
    margin-bottom: 48px;
}

.wnmu-locations-section__title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #42196F;
    border-bottom: 2px solid #42196F;
    padding-bottom: 6px;
    margin: 0 0 20px;
}

/* Grid */
.wnmu-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

/* Card */
.wnmu-location-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
}

.wnmu-location-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.wnmu-location-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wnmu-location-card__name { /* h3 */
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #42196F;
    line-height: 1.3;
}

.wnmu-location-card__address {
    font-style: normal;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.wnmu-location-card__desc {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
}

.wnmu-location-card__desc p {
    margin: 0 0 0.5em;
}

.wnmu-location-card__desc p:last-child {
    margin-bottom: 0;
}

.wnmu-location-card__map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #42196F;
    text-decoration: none;
    margin-top: 4px;
}

.wnmu-location-card__map-link:hover {
    text-decoration: underline;
}

.wnmu-locations-empty {
    color: #666;
    font-style: italic;
}

@media (max-width: 767px) {
    .wnmu-locations-hero { margin-top: 84px; padding: 80px 15px; }
    .wnmu-locations-grid { grid-template-columns: 1fr; }
}
