/* Custom styles for Sample Post 1 - Rich Media & Colorful */

/* Lead paragraph styling */
.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 300;
    color: #b8e994;
    border-left: 4px solid #4CAF50;
    padding-left: 20px;
    margin: 30px 0;
}

/* Featured Image */
.featured-image {
    margin: 30px 0;
    text-align: center;
}

.featured-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-caption {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

/* Inline Image Right */
.inline-image-right {
    float: right;
    margin: 0 0 20px 30px;
    max-width: 300px;
    text-align: center;
}

.inline-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 3px solid #4CAF50;
}

/* Callout Box */
.callout-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.callout-box h3 {
    margin-top: 0;
    color: white;
    font-size: 1.3rem;
}

.callout-box p {
    color: white;
    margin-bottom: 0;
}

/* Fancy Quote */
.fancy-quote {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-left: 5px solid #f5576c;
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
    font-size: 1.4rem;
    font-style: italic;
    color: white;
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.3);
}

.fancy-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    font-style: normal;
    color: #ffe0e6;
}

/* Video Container */
.video-container {
    margin: 40px 0;
    text-align: center;
}

.video-container iframe {
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.info-table thead {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.info-table th {
    padding: 15px;
    color: white;
    font-weight: bold;
    text-align: left;
}

.info-table td {
    padding: 15px;
    border-bottom: 1px solid #333;
    color: #c0c0c0;
}

.info-table tbody tr:hover {
    background-color: #2a2a2a;
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

/* Related Links Box */
.related-links {
    background-color: #2c3e50;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 2px solid #34495e;
}

.related-links h3 {
    margin-top: 0;
    color: #4CAF50;
}

.related-links ul {
    list-style: none;
    padding-left: 0;
}

.related-links li {
    margin-bottom: 10px;
}

.related-links a {
    color: #5dade2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-links a:hover {
    color: #85c1e9;
    text-decoration: underline;
}

.related-links a::before {
    content: "→ ";
    color: #4CAF50;
}

/* Tags */
.post-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid #4CAF50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .inline-image-right {
        float: none;
        margin: 20px auto;
        max-width: 100%;
    }

    .video-container iframe {
        height: 250px;
    }
}