  .banner-section {
	 height: 600px;
}
 @media (max-width: 1920px) {
	 .banner-section {
		 height: 31.25vw;
	}
}
 #banner {
	 height: 600px;
}
 @media (max-width: 1920px) {
	 #banner {
		 height: 31.25vw;
	}
}
 .article-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .article-card {
            background-color: #1a1a1a;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
        }
        .article-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .article-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .article-title {
            font-family: "DM Serif Text", serif;
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            text-align: left;
        }
        .article-description {
            color: var(--light-text);
            font-size: 1rem;
            margin-bottom: 1rem;
            flex-grow: 1;
        }
        .read-more-btn {
            background-color: var(--primary-color);
            color: var(--light-text);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: flex-start;
        }
        .read-more-btn:hover {
            background-color: #8b6d3d;
        }
        .back-to-home {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1000;
            background-color: var(--primary-color);
            color: var(--dark-bg);
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        .back-to-home:hover {
            background-color: #8b6d3d;
            color: var(--light-text);
        }
        @media (min-width: 768px) {
            .article-card {
                flex-direction: row;
            }
            .article-image {
                width: 300px;
                height: auto;
            }
            .article-content {
                flex: 1;
            }
        }

a{
    font-weight: bold;
}