/* ==============================================
   Blog Dynamic Content Styles
   ============================================== */

/* Info Box Styling */
.info-box {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.info-box.primary {
    border-left: 4px solid #0056b3;
    background-color: #e7f3ff;
}

.info-box.warning {
    border-left: 4px solid #ff9800;
    background-color: #fff3e0;
}

.info-box.success {
    border-left: 4px solid #4caf50;
    background-color: #e8f5e9;
}

.info-box.danger {
    border-left: 4px solid #f44336;
    background-color: #ffebee;
}

.info-box .info-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.info-box .info-title i {
    margin-right: 8px;
}

.info-box .info-content {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Image Caption */
.image-caption {
    font-style: italic;
    color: #777;
    font-size: 14px;
    margin-top: 10px;
}

/* Quote Area Enhanced */
.rts-quote-area {
    padding: 40px 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    margin: 30px 0;
    position: relative;
}

.rts-quote-area::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 100px;
    color: rgba(0, 86, 179, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.rts-quote-area .title {
    font-style: italic;
    color: #333;
    position: relative;
    z-index: 1;
}

.rts-quote-area .name {
    color: #0056b3;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}

/* Check List Enhanced */
.check-area-details .single-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.check-area-details .single-check:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.check-area-details .single-check i {
    color: #4caf50;
    margin-right: 12px;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.check-area-details .single-check span {
    color: #555;
    line-height: 1.6;
}

/* Two Columns Layout */
.two-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .two-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Thumbnail Large Image */
.thumbnail-large {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thumbnail-large img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.thumbnail-large:hover img {
    transform: scale(1.05);
}

/* Blog Details Paragraphs */
.blog-details-area-inner-content p.disc {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

/* Headings in Blog Content */
.blog-details-area-inner-content h5.title {
    color: #222;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Tags and Share Section */
.details-tag,
.details-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.details-tag h6,
.details-share h6 {
    margin-right: 10px;
    margin-bottom: 0;
    font-weight: 600;
}

.details-tag button {
    background-color: #f0f0f0;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details-tag button:hover {
    background-color: #0056b3;
    color: #fff;
}

.details-share button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-share button:hover {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

/* Author Area Enhanced */
.author-area-blog {
    display: flex;
    gap: 25px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 40px 0;
}

.author-area-blog .thumbnail {
    flex-shrink: 0;
}

.author-area-blog .thumbnail img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-area-blog .author-details h5 {
    color: #333;
    margin-bottom: 5px;
}

.author-area-blog .author-details span {
    color: #0056b3;
    font-size: 14px;
    font-weight: 600;
}

.author-area-blog .author-details p {
    margin-top: 15px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .author-area-blog {
        flex-direction: column;
        text-align: center;
    }
    
    .author-area-blog .thumbnail img {
        margin: 0 auto;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .info-box {
        padding: 20px !important;
    }
    
    .rts-quote-area {
        padding: 30px 20px;
    }
}
