	.related-articles-section {
				margin-top: 60px;
				margin-bottom: 40px;
				width: 100%;
			}

			.related-articles-title {
				font-family: 'Open Sans', sans-serif;
				font-size: 24px;
				font-weight: 600;
				color: #333333;
				text-align: left;
				margin-bottom: 40px;
			}

			.related-articles-slider {
				width: 100%;
				position: relative;
				overflow: hidden;
			}

			.related-articles-track {
				width: 100%;
				overflow: hidden;
			}

			.related-articles-inner {
				display: flex;
				gap: 30px;
				margin: 0;
				padding: 0;
			}


			@media (min-width: 1025px) {
				.related-articles-inner {
					flex-wrap: wrap;
					transition: none;
				}
			}


			@media (max-width: 1024px) {
				.related-articles-inner {
					transition: transform 0.5s ease;
				}
			}

			.related-article-item {
				flex: 0 0 calc(33.333% - 20px);
				background: #ffffff;
				border: none;
				border-radius: 0;
				overflow: hidden;
				display: flex;
				flex-direction: column;
			}

			.related-article-thumb {
				width: 100%;
				height: 200px;
				overflow: hidden;
			}

			.related-article-thumb img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				transition: transform 0.3s;
			}

			.related-article-thumb:hover img {
				transform: scale(1.05);
			}

			.related-article-content {
				flex-grow: 1;
				display: flex;
				flex-direction: column;
			}

			.related-article-title {
				font-family: 'Open Sans', sans-serif;
				font-size: 18px;
				font-weight: 600;
				color: #333333;
				margin: 0 0 15px 0;
				line-height: 1.4;
				height: 76px;
				overflow: hidden;
				display: -webkit-box;
				-webkit-line-clamp: 3;
				-webkit-box-orient: vertical;
			}

			.related-article-title a {
				color: #333333 !important;
				text-decoration: none;
				transition: color 0.3s;
			}

			.related-article-title a:hover {
				color: #E4054C !important;
			}

			.related-article-excerpt {
				font-family: 'Open Sans', sans-serif;
				font-size: 14px;
				color: #777777;
				line-height: 1.6;
				margin-bottom: 15px;
				height: 67px;
				overflow: hidden;
				display: -webkit-box;
				-webkit-line-clamp: 3;
				-webkit-box-orient: vertical;
			}

			.related-article-meta {
				display: flex;
				flex-direction: column;
				align-items: flex-start;
				gap: 10px;
				margin-top: auto;
			}

			.related-article-date {
				font-family: 'Open Sans', sans-serif;
				font-size: 14px;
				color: #E4054C;
				font-weight: 500;
			}

			.related-article-tag {
				  display: inline-block !important;
				font-family: 'Open Sans', sans-serif;
				font-size: 14px;
				color: #E4054C !important;
				text-decoration: none !important;
				margin-right: 5px;
			}

			.related-article-tag:hover {
				text-decoration: underline;
			}

			@media (max-width: 768px) {
				.related-article-item {
					flex: 0 0 100%;
				}

				.related-articles-title {
					font-size: 20px;
					margin-bottom: 30px;
					text-align: left;
				}
			}

			@media (min-width: 769px) and (max-width: 1024px) {
				.related-article-item {
					flex: 0 0 calc(50% - 15px);
				}
			}

			@media (min-width: 1025px) {
				.related-article-item {
					flex: 0 0 calc(33.333% - 20px);
				}
			}