.domain-health-page {
    color: var(--devboxy-text);
}

.domain-health-hero {
    display: grid;
    gap: 1.5rem;
    align-items: end;
}

.domain-health-hero__panel {
    border: 1px solid rgba(168, 222, 215, 0.72);
    background: #ffffff;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.domain-health-score-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 8rem;
    border-radius: var(--devboxy-radius);
    background: linear-gradient(135deg, #073631 0%, #0f665f 56%, #2563eb 100%);
    padding: 1.25rem;
}

.domain-health-tool-link {
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 0.85rem 1rem;
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none;
    transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.domain-health-tool-link:hover {
    border-color: rgba(25, 160, 148, 0.45);
    background: #e7f7f4;
    color: #0b4d48;
}

@media (min-width: 768px) {
    .domain-health-hero {
        grid-template-columns: minmax(0, 1fr) 22rem;
    }
}
