:root {
    --primary-green: #005a2b;
    --bg-light: #f9fafb;
}

.single-news-container {
    max-width: 1200px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.single-news-wrapper {
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.main-news-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.news-category {
    display: inline-block;
    background-color: var(--primary-green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-news-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #111827;
}

.news-meta {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
}

.news-meta i {
    color: var(--primary-green);
    margin-right: 8px;
}

.news-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

.news-description p {
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.recent-news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recent-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.recent-news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recent-news-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.recent-news-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.recent-news-card-title a {
    text-decoration: none;
    color: #111827;
    transition: color 0.2s ease;
}

.recent-news-card-title a:hover {
    color: var(--primary-green);
}

.recent-news-card-meta {
    margin-top: auto;
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recent-news-card-meta i {
    color: var(--primary-green);
}

.recent-news-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    padding: 10px 5px 25px 5px;
}

.recent-news-scroll::-webkit-scrollbar {
    height: 6px;
}

.recent-news-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.recent-news-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.recent-news-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.recent-news-card-wrapper {
    flex: 0 0 auto;
    width: 280px;
}