/* First row inside the existing Handa/Otemachi banner area. */
.footer-promotions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 14px;
    box-sizing: border-box;
    scroll-margin-top: 130px;
    width: 100%;
    margin: 0 0 14px;
    padding: 0;
}
.footer-promotions .footer-promotions__card {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #d9e2e8;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(28, 52, 72, .06);
    transition: box-shadow .2s ease, transform .2s ease;
}
.footer-promotions .footer-promotions__card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    margin: 0;
    padding: 0;
}
.footer-promotions a.footer-promotions__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(28, 52, 72, .13);
}
.footer-promotions a.footer-promotions__card:focus-visible {
    outline: 3px solid #2366ad;
    outline-offset: 5px;
}
footer .footer-promotions {
    width: calc(100% - 40px);
    max-width: 560px;
    margin: 24px auto;
}
@media (max-width: 750px) {
    .footer-promotions { gap: 10px; margin-bottom: 10px; scroll-margin-top: 100px; }
}
@media (prefers-reduced-motion: reduce) {
    .footer-promotions .footer-promotions__card { transition: none; }
}
