

.featured-news-wrapper {
    position: relative;
    
    left: 0;
    right: 0;
    z-index: 1;
}

.featured-news {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform: translateY(-30%);
}


@media(max-width: 767px){

.featured-news {
    
    transform: translateY(-13%);
}
}

.news-content-wrapper {
  /*margin-top: 340px;  */
  position: relative;
  top: -30px;
}

.news-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    display: flex;
    gap: 1rem;
}

/* Update news card image styles */
.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    width: 130px;
   height: 130px;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hot-news-sidebar {
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hot-news-sidebar h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.hot-news-sidebar img {
    object-fit: cover;
}

.hot-news-sidebar .badge {
    font-size: 0.6rem;
}

.ts-hero {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ts-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.ts-hero-content {
    position: relative;
    z-index: 1;
}

.news-detail {
    line-height: 1.8;
}

.news-detail .meta {
    color: #666;
    font-size: 0.9rem;
}

.news-detail .content {
    font-size: 1.1rem;
}