@charset "utf-8";
/**
 * board_basic/css/view.css
 * Post view page styles (minimal - uses board_common.css)
 * 
 * %%% MODIFIED %%%
 * - Removed .container (handled by header.php)
 * - Removed duplicate board_common.css styles
 * - Removed comment styles (in board_common.css)
 * - Removed slideshow styles (in slider.php)
 * - Single 768px breakpoint
 */

/* =============================================
   1. POST TITLE & INFO
   ============================================= */
.title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.info {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

/* =============================================
   2. POST CONTENT
   ============================================= */
.content {
    white-space: pre-wrap;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-img {
    max-width: 100%;
    width: auto;
    max-height: 600px;
    height: auto;
    cursor: pointer;
    display: block;
    margin: 0 auto 1rem;
    border-radius: 5px;
}

/* =============================================
   3. MEDIA WRAPPERS (Audio/Video/YouTube)
   ============================================= */
.audio-wrapper {
    margin: 20px 0;
    text-align: center;
}

.audio-wrapper audio {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    margin: 20px 0;
    text-align: center;
}

.video-wrapper video {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.youtube-wrapper {
    margin: 20px 0;
    text-align: center;
}

.youtube-wrapper iframe {
    width: 100%;
    max-width: 800px;
    height: 480px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* =============================================
   4. DOWNLOAD BUTTON
   ============================================= */
.download-btn {
    background: #28a745;
    margin: 0.3rem;
}

.download-btn:hover {
    background: #218838;
}

/* =============================================
   5. RESPONSIVE (768px)
   ============================================= */
@media (max-width: 768px) {
    .audio-wrapper audio {
        max-width: 100%;
    }

    .video-wrapper video {
        max-width: 100%;
    }

    .youtube-wrapper iframe {
        height: 200px;
    }
}