﻿:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --dark-color: #2C3E50;
    --light-color: #F7F9FC;
}

.blog-item {
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-title {
    padding: 20px;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-title h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: var(--dark-color);
}

.blog-title .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background: var(--primary-color);
    border-radius: 40px;
    transition: all 0.3s ease;
}

.blog-title .btn:hover {
    background: var(--dark-color);
}

.blog-meta {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eeeeee;
}

.blog-meta p {
    margin: 0;
    font-size: 14px;
    color: #666666;
}

.blog-meta p a {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 5px;
}

.blog-text {
    padding: 20px;
}

.blog-text p {
    margin: 0;
    color: #666666;
    line-height: 1.8;
}

.blog-page {
    margin-top: 30px;
}

@media (max-width: 991.98px) {
    .blog-title h3 {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .blog-title h3 {
        font-size: 18px;
    }
}
