/* Blogs Page Specific Styles */

.blog-categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.category-btn {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #103536;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: rgba(50, 183, 186, 0.2);
    border-color: #32B7BA;
    color: #32B7BA;
}

.blog-post-card {
    background: rgba(0, 0, 0, 0.5);
    border: 0px solid #103536;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    border-color: #32B7BA;
    box-shadow: 0 2px 20px rgba(50, 183, 186, 0.2);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
}

.blog-post-image .image-placeholder {
    width: 100%;
    height: 250px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(at top left, #023D3FA3 0%, #0D0E12 60%);
}

.blog-post-image .placeholder-icon {
    font-size: 80px;
    opacity: 0.6;
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(50, 183, 186, 0.9);
    color: #000000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #9FABAB;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
}

.blog-date::before {
    content: "📅";
    margin-right: 5px;
}

.blog-read-time::before {
    content: "⏱️";
    margin-right: 5px;
}

.read-more-link {
    color: #32B7BA;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #00a8cc;
    transform: translateX(5px);
}

.newsletter-section {
    background: rgba(0, 0, 0, 0.3);
}

.newsletter-form .input-group {
    max-width: 100%;
}

.newsletter-form .form-control {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-categories {
        justify-content: flex-start;
    }
    
    .category-btn {
        font-size: 14px;
        padding: 8px 18px;
    }
    
    .blog-post-image .image-placeholder {
        height: 200px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 8px;
        width: 100%;
    }
    
    .newsletter-form .btn {
        margin-top: 10px;
    }
}