/* =====================================================
   HelpStar — Our Providers Page Styles (Design System)
   ===================================================== */

/* ── Hero Banner ── */
.providers-hero {
    background-color: #FAF8F5;
    padding: 4.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.providers-hero::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -40px;
    width: 220px;
    height: 220px;
    border: 3px solid #00838F;
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
}

.providers-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1B2A4A;
    line-height: 1.15;
}

.providers-hero-title span {
    color: #00838F;
}

.providers-hero-subtitle {
    font-size: 1.1rem;
    color: #00838F;
    font-weight: 600;
    line-height: 1.6;
}

.providers-hero-desc {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.7;
}

/* ── Info Banner ── */
.providers-info-banner {
    background-color: #1B264F;
    padding: 3.5rem 0;
}

.providers-info-label {
    color: #00B5AD;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.providers-info-text {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ── Provider Cards ── */
.provider-card {
    background-color: #E0F2F1;
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    overflow: hidden;
}

.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.provider-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #00838F;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffffff;
}

.provider-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 0.2rem;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
}

.provider-creds {
    font-size: 0.88rem;
    color: #00838F;
    font-weight: 600;
    margin-bottom: 0.75rem;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
}

.provider-desc {
    font-size: 0.88rem;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
}

.provider-book-btn {
    background-color: #00838F;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.55rem 1.5rem;
    border-radius: 50rem;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}
.provider-book-btn:hover {
    background-color: #006064;
    color: #ffffff;
    transform: translateY(-1px);
}
