/* ============================================
   COVERAGE LINK CARD
   ============================================ */

.coverage-link-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    max-width: 900px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;

    background: var(--card-bg);
    border-radius: 18px;
    text-decoration: none;

    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover only on non-touch devices */
@media (hover: hover) {
    .coverage-link-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
    }
}

/* ============================================
   LEFT CONTENT
   ============================================ */

.coverage-link-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coverage-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.3rem;
    background: rgba(0, 200, 83, 0.12);
    flex-shrink: 0;
}

.coverage-link-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.coverage-link-text strong {
    font-size: 0.95rem;
    color: var(--text);
}

.coverage-link-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   CTA
   ============================================ */

.coverage-link-cta {
    align-self: flex-end;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */

.coverage-footer {
    margin-top: 1.25rem;
    text-align: center;
}

.coverage-footer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
}

.coverage-footer a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.coverage-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   DESKTOP LAYOUT
   ============================================ */

@media (min-width: 768px) {
    .coverage-link-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 2rem;
    }

    .coverage-link-cta {
        align-self: center;
        font-size: 1rem;
    }
}
