/**
 * FPP App Promo
 * Sidebar cross-promo for the Atrium Cryptogram app. No card/border of its own —
 * the parent .side-widget already provides the native separator and spacing, so
 * this block matches the other sidebar elements (Let's Connect, Recent Posts).
 */

.fpp-app-promo {
    text-align: center;
    font-family: "Mulish", Sans-serif;
}

.fpp-app-promo__label {
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 10px;
}

.fpp-app-promo__text {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    margin: 0 0 14px 0;
}

/* Badge link. Google brand rule: keep clear space around the badge and do not
   recolor or rescale it beyond uniform sizing. */
.fpp-app-promo__badge {
    display: inline-block;
    line-height: 0;
    transition: transform 0.2s ease;
}

.fpp-app-promo__badge:hover,
.fpp-app-promo__badge:focus {
    transform: translateY(-2px);
}

.fpp-app-promo__badge img {
    display: inline-block;
    width: 180px; /* official badge aspect ~3.37:1 → ~53px tall */
    max-width: 100%;
    height: auto;
}

/* Web-game badge (non-Android default): same footprint as the Play Store
   badge (~180x53) so the card doesn't jump when JS swaps variants. */
.fpp-app-promo__badge--web {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 53px;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    background: #1b5e20;
    color: #fff;
    font-family: "Mulish", Sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.fpp-app-promo__badge--web:hover,
.fpp-app-promo__badge--web:focus {
    background: #164a1a;
}
