﻿/* Article image styling */
.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-bottom: 5px solid var(--bs-warning); /* Adding a custom border for emphasis */
}

/* Main content area styling */
.article-content {
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: -80px; /* Pull content up slightly */
    z-index: 1;
    position: relative;
}

/* Title and Meta information styling */
.article-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.article-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

    .article-meta span {
        margin-right: 15px;
        font-weight: 500;
    }

/* Article text styling */
.article-text {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
}

/* Blockquote styling */
blockquote {
    background-color: #f9f9f9;
    border-left: 5px solid var(--bs-warning);
    padding: 15px;
    font-style: italic;
    margin: 30px 0;
}

/* Social share buttons styling */
.social-share {
    margin-top: 40px;
}

    .social-share a {
        font-size: 24px;
        margin-right: 15px;
        color: #555;
    }

        .social-share a:hover {
            color: var(--bs-warning);
        }
