/**
 * Refreshed Product - Installation Locations
 * Section-specific styles (uses section-header component)
 */

.rp-installation-locations {
    padding: 75px 0;
    background: #fafafa;
}

.rp-installation-locations__locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 50px;
}

.rp-installation-locations__location-card,
.rp-installation-locations__location-card:hover,
.rp-installation-locations__location-card:focus,
.rp-installation-locations__location-card:active {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.rp-installation-locations__location-card-thumbnail {
    width: 100%;
    aspect-ratio: 1/1.3;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f5f5;
}

.rp-installation-locations__location-card-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.rp-installation-locations__location-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rp-installation-locations__location-card-title {
    color: #27272c;
    font-family: var(--font-aeonik);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    margin: 0;
    text-decoration: none;
}

.rp-installation-locations__location-card-title-line {
    display: inline;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-position: left bottom;
    background-repeat: no-repeat;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.rp-installation-locations__location-card-label {
    color: #686873;
    font-family: var(--font-inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}
