/* ANZ SRS Region Contact Widget */

.anz-rc-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e2d6e;
    text-align: center;
    margin: 0 0 32px 0;
    line-height: 1.2;
}

.anz-rc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.anz-rc-card {
    background: #ffffff;
    border: 2px solid #2563eb;
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

/* Photos container */
.anz-rc-photos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

/* Photo */
.anz-rc-photo-wrap {
    width: 140px;
    height: 160px;
    border-radius: 24px;
    border: 2px solid #2563eb;
    border-style: solid;
    overflow: hidden;
    flex-shrink: 0;
    box-sizing: border-box;
    background: #f1f5f9;
}

.anz-rc-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.anz-rc-photo-placeholder {
    background: #e2e8f0;
}

/* Name */
.anz-rc-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e2d6e;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

/* Position */
.anz-rc-position {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 400;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

/* Email button */
.anz-rc-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 999px;
    transition: background-color 0.2s ease, transform 0.15s ease;
    margin-top: auto;
    word-break: break-all;
}

.anz-rc-email-btn:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-1px);
    text-decoration: none;
}

.anz-rc-email-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

/* Responsive */
@media (max-width: 480px) {
    .anz-rc-grid {
        gap: 16px;
    }

    .anz-rc-card {
        padding: 28px 20px;
    }

    .anz-rc-title {
        font-size: 1.5rem;
    }
}
