/* ==========================================================================
   General Project Layout & Typography
   ========================================================================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f0f2f5;
    color: #2c3e50;
    margin: 0;
    padding: 20px;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

header h1 {
    margin-bottom: 5px;
    color: #1a252f;
}

hr {
    border: 0;
    height: 1px;
    background-line: #e2e8f0;
    background: #e2e8f0;
    margin: 30px 0;
}

/* ==========================================================================
   Image Attributes: Alignment, Border, and Spacing
   ========================================================================== */
.aligned-image {
    float: left;            /* Aligns image within the text block */
    margin-right: 20px;     /* Side spacing to separate text from image */
    margin-bottom: 15px;    /* Bottom spacing */
    border: 5px solid #34495e; /* Distinct image border */
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.aligned-image:hover {
    transform: scale(1.02); /* Visual cue proving it is a clickable link */
}

/* Clearfix utility to reset floated elements */
.clear-fix {
    clear: both;
}

/* ==========================================================================
   Custom List Style Image
   ========================================================================== */
.media-list {
    /* Replaces standard bullets with a Creative Commons style checkmark icon */
    list-style-image: url('https://img.icons8.com/color/16/checked-checkbox.png');
    padding-left: 30px;
}

.media-list li {
    margin-bottom: 12px;
}

/* ==========================================================================
   Multimedia Player Component Styling
   ========================================================================== */
.player-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

audio {
    width: 100%;
    margin: 15px 0 5px 0;
}

video {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 15px;
}

.media-caption {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 8px;
    font-style: italic;
}