/* Blog Detail Styles */

.blog-post-detail {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.blog-post-detail article img {
    max-height: 500px;
    object-fit: cover;
}

.post-summary {
    font-style: italic;
    border-left: 4px solid #0d6efd;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.post-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.post-content img {
    max-width: 100%;
    height: auto !important;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.post-content img:hover {
    transform: scale(1.02);
}

.gallery-item img {
    min-height: 150px;
    object-fit: cover;
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.15) !important;
}

.hover-primary:hover {
    color: #0d6efd !important;
}

/* Modern Article Layout Classes */
.article-row {
    margin-bottom: 3rem;
}
.article-img-col {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.article-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .article-row { margin-bottom: 2rem; }
    .article-img-col { margin-bottom: 1.5rem; }
}

.last-no-border:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
