/* News Section Styles */
.news-section {
    position: relative;
    padding: 10px 0px 10px;
    background-color: #f8f9fa;
}

.news-section .title-box {
    margin-bottom: 60px;
}

.news-block {
    margin-bottom: 30px;
}

.news-block .inner-box {
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-block .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.news-block .image-box {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-block .image-box .image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.news-block .image-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news-block .inner-box:hover .image img {
    transform: scale(1.05);
}

.news-block .date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff6b35;
    color: #ffffff;
    text-align: center;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.news-block .date span {
    display: block;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.news-block .date .month {
    font-size: 11px;
    text-transform: uppercase;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.news-block .lower-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 250px);
}

.news-block .category {
    color: #ff6b35;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.news-block h4 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    flex-grow: 1;
}

.news-block h4 a {
    color: #2c3e50;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-block h4 a:hover {
    color: #ff6b35;
}

.news-block .text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-block .link-box {
    margin-top: auto;
}

.news-block .link-box .theme-btn {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.news-block .link-box .theme-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.news-block .link-box .theme-btn .icon {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.news-block .link-box .theme-btn:hover .icon {
    transform: translateX(3px);
}

.more-box {
    margin-top: 50px;
}

.more-box .theme-btn.btn-style-two {
    background-color: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.more-box .theme-btn.btn-style-two:hover {
    background-color: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .news-section {
        padding: 60px 0px 40px;
    }
    
    .news-block .inner-box {
        margin-bottom: 30px;
    }
    
    .news-block .lower-content {
        padding: 25px 20px;
    }
    
    .news-block h4 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .news-block .date {
        top: 15px;
        left: 15px;
        padding: 8px 10px;
    }
    
    .news-block .date span {
        font-size: 18px;
    }
    
    .news-block .date .month {
        font-size: 10px;
    }
}