/* Blog Post Common Styles */

.blob span {
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #4a9fd8;
    font-weight: 700;
    display: block;
    margin: 30px 0 15px 0;
    border-left: 4px solid #4a9fd8;
    padding-left: 15px;
}

.blob span.title {
    font-size: 28px;
    letter-spacing: 1px;
    color: #f5a425;
    font-weight: 700;
    margin-bottom: 20px;
    border: none;
    padding-left: 0;
}

.blob p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(74, 159, 216, 0.3);
}

.author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #4a9fd8;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-details .name {
    font-size: 16px;
    color: #f5a425;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-details .date {
    font-size: 13px;
    color: #888;
}

.blob ul {
    font-size: 15px;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
    color: #e0e0e0;
}

.blob ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.blob ul li::before {
    content: "\2022";
    color: #4a9fd8;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 8px;
    top: -2px;
}

.blob ul li strong {
    color: #f5a425;
}

.blog-image-container {
    margin: 35px 0;
    text-align: center;
}

.blog-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.blog-image-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 35px 0;
}

.blog-image-row img {
    flex: 1;
    max-width: 32%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.blog-image-row img:hover {
    transform: scale(1.05);
}

.section-heading h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.blog {
    background: #1b2944;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .blog-image-row {
        flex-direction: column;
    }
    .blog-image-row img {
        max-width: 100%;
    }
}
