.options_card img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================
   WAJAE — CONTROLS, COUNTDOWN, PAUSED STATE
   ========================================= */

/* Arrow row */
.wajae-showcase .wajae-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

/* Round gold arrow buttons */
.wajae-showcase .wajae-controls .wajae-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1.5px solid #b99d64;
    border-radius: 50%;
    background: transparent;
    color: #b99d64;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease,
                transform 0.2s ease, box-shadow 0.2s ease;
}

.wajae-showcase .wajae-controls .wajae-nav svg {
    display: block;
    width: 20px;
    height: 20px;
}

.wajae-showcase .wajae-controls .wajae-nav:hover,
.wajae-showcase .wajae-controls .wajae-nav:focus-visible {
    background: #b99d64;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(185, 157, 100, 0.35);
}

.wajae-showcase .wajae-controls .wajae-nav:active {
    transform: scale(0.96);
}

.wajae-showcase .wajae-controls .wajae-nav:focus-visible {
    outline: 2px solid #b99d64;
    outline-offset: 3px;
}

/* "01 / 06" counter */
.wajae-showcase .wajae-counter {
    min-width: 4.5em;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

/* Countdown / paused line (always takes up its space, so no jumping) */
.wajae-showcase .wajae-status {
    min-height: 1.5em;
    margin-top: 10px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.75;
}

/* Progress bar at the bottom of each article */
.wajae-showcase .wajae-progress {
    height: 3px;
    margin-top: 28px;
    overflow: hidden;
    border-radius: 2px;
    background: #e5e5e5;
}

.wajae-showcase .wajae-progress-bar {
    width: 0;
    height: 100%;
    background: #b99d64;
}

/* Paused: the gold outline you liked, plus a grey bar */
.wajae-showcase .wajae-showcase-content {
    transition: box-shadow 0.25s ease;
}

.wajae-showcase.wajae-paused .wajae-showcase-content {
    box-shadow: 0 0 0 1px rgba(185, 157, 100, 0.7);
}

.wajae-showcase.wajae-paused .wajae-progress-bar {
    background: #999;
}

.wajae-showcase.wajae-paused .wajae-status {
    opacity: 1;
    font-weight: 600;
}