.support-callout {
    padding: 60px 0;
    position: relative;
}

.support-callout--home {
    background: linear-gradient(135deg, rgba(10, 14, 20, 0.95), rgba(6, 10, 16, 0.92));
}

.support-callout--subscriptions {
    padding: 40px 0 20px;
}

.support-callout-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    background: rgba(12, 16, 24, 0.85);
    border: 1px solid rgba(130, 200, 255, 0.25);
    border-radius: 22px;
    padding: 26px 30px;
    max-width: 980px;
    margin: 0 auto;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.support-callout-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 130, 200, 0.2);
    border: 1px solid rgba(120, 200, 255, 0.35);
    color: #78c8ff;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.support-callout-title {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240, 248, 255, 0.7);
    margin-bottom: 8px;
}

.support-callout-number {
    font-family: 'Orbitron', 'Raleway', sans-serif;
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 700;
    color: #e9f5ff;
    margin-bottom: 6px;
}

.support-callout-number a {
    color: inherit;
    text-decoration: none;
}

.support-callout-number a:hover {
    color: #9ad7ff;
}

.support-callout-text {
    margin: 0;
    color: rgba(230, 240, 255, 0.72);
}

@media (max-width: 768px) {
    .support-callout-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 24px;
    }

    .support-callout-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}
