/* Blog Carousel Styles */
.blog-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.blog-carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.blog-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-slide {
    min-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Navigation Buttons */
.blog-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(29, 191, 115, 0.1);
    border: 2px solid rgba(29, 191, 115, 0.3);
    color: #1dbf73;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.blog-nav:hover:not(:disabled) {
    background: linear-gradient(135deg, #1dbf73, #00d9ff);
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.1);
}

.blog-nav:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.blog-nav svg {
    width: 24px;
    height: 24px;
}

/* Dots Indicator */
.blog-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.blog-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(29, 191, 115, 0.2);
    border: 2px solid rgba(29, 191, 115, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-dot.active {
    background: linear-gradient(135deg, #1dbf73, #00d9ff);
    border-color: #1dbf73;
    transform: scale(1.3);
}

.blog-dot:hover {
    background: rgba(29, 191, 115, 0.5);
    transform: scale(1.2);
}

/* Responsive Carousel */
@media (max-width: 1024px) {
    .blog-slide {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .blog-slide {
        min-width: 100%;
    }

    .blog-carousel-wrapper {
        gap: 10px;
    }

    .blog-nav {
        width: 40px;
        height: 40px;
    }

    .blog-nav svg {
        width: 20px;
        height: 20px;
    }
}

/* Keep existing blog card styles */
.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(29, 191, 115, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(29, 191, 115, 0.3);
    border-color: rgba(29, 191, 115, 0.4);
}

.blog-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.blog-category {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #1dbf73, #00d9ff);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(29, 191, 115, 0.4);
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #a0a8c0;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta svg {
    opacity: 0.7;
}

.blog-title {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: #a0a8c0;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.blog-tag {
    padding: 4px 12px;
    background: rgba(29, 191, 115, 0.1);
    color: #1dbf73;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(29, 191, 115, 0.2);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #1dbf73;
    border: 2px solid #1dbf73;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
}

.blog-read-more:hover {
    background: linear-gradient(135deg, #1dbf73, #00d9ff);
    color: #ffffff;
    border-color: transparent;
    transform: translateX(5px);
}

.blog-read-more svg {
    transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
    transform: translateX(5px);
}