/* ANZ SRS Region Grid Widget */

.anz-region-grid {
    display: grid;
    gap: 32px 24px;
    width: 100%;
    box-sizing: border-box;
}


.anz-region-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.anz-region-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.anz-region-link:hover .anz-region-circle {
    border-color: #1d4ed8;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
    transform: scale(1.03);
}

.anz-region-link:hover .anz-region-label {
    color: #2563eb;
}

.anz-region-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 0px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    box-sizing: border-box;
}

.anz-region-circle img,
.anz-region-circle .anz-region-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    box-sizing: border-box;
    display: block;
}

.anz-region-label {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    max-width: 200px;
    transition: color 0.2s ease;
}

.anz-region-grid-empty {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
    font-style: italic;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

/* Responsive — circle sizing only; columns are controlled by Elementor per-breakpoint */
@media (max-width: 480px) {
    .anz-region-grid {
        gap: 20px 16px;
    }
}
