/* iOS App Store promotion panels */
.trainer-ios-promo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: 0.75rem;
    background:
        linear-gradient(135deg, rgba(30, 64, 175, 0.34), rgba(17, 24, 39, 0.96)),
        #111827;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.trainer-ios-promo .ios-app-icon {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.trainer-ios-promo-content {
    min-width: 0;
    flex: 1 1 auto;
}

.trainer-ios-promo .ios-app-actions {
    flex: 0 0 auto;
    margin-left: auto;
}

.trainer-ios-promo-title {
    margin: 0 0 0.25rem;
    color: #f8fafc;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
}

.trainer-ios-promo-copy {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.55;
}

.ios-app-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.app-store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.62rem 1rem;
    border: 1px solid rgba(34, 211, 238, 0.5);
    border-radius: 0.55rem;
    background: linear-gradient(135deg, #0891b2, #2563eb);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.app-store-button:hover {
    color: #ffffff;
    transform: translateY(-1px);
    border-color: rgba(125, 211, 252, 0.8);
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.34);
}

.app-store-button:focus-visible {
    outline: 3px solid rgba(125, 211, 252, 0.9);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .trainer-ios-promo {
        align-items: flex-start;
        gap: 0.85rem;
    }

    .trainer-ios-promo .ios-app-icon {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .trainer-ios-promo .ios-app-actions {
        width: 100%;
        margin-left: 0;
    }

    .trainer-ios-promo .app-store-button {
        width: 100%;
    }
}
