/* ========================================
   Screenshot Display Styles
   アコーディオン外のスクリーンショット表示
   ======================================== */

.screenshot-container {
    text-align: center;
    margin: 20px 0;
}

.screenshot-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.screenshot-caption {
    color: #6B7280;
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
}

.screenshot-caption i {
    margin-right: 5px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .screenshot-container {
        margin: 15px 0;
    }

    .screenshot-container img {
        width: 95%;
    }

    .screenshot-caption {
        font-size: 0.85rem;
    }
}
