.related-articles-container {
    padding: 40px 0;
    font-family: 'Inter', sans-serif;
}

.related-articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.related-articles-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.related-articles-nav {
    display: flex;
    gap: 80px;
}

.related-articles-nav button {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.related-articles-nav button:hover, .related-articles-nav button:focus {
    color: #333;
	background: none;
}

/* .related-articles-slider {
    margin: 0 -15px;
} */

.related-article-item {
    padding: 0 15px;
}

.related-article-inner {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-article-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.related-article-image {
    aspect-ratio: 3/2;
    overflow: hidden;
}

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

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

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

.related-article-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.4;
    flex-grow: 1;
}

.related-article-footer {
    display: flex;
    justify-content: flex-start;
}

.related-article-read-more {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.related-article-read-more:hover {
    color: #000;
}

.read-more-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #eee;
    border-radius: 50%;
    transition: all 0.3s;
}

.related-article-read-more:hover .read-more-icon {
    background-color: #f5f5f5;
    transform: rotate(-45deg);
}

/* Slick adjustments */
.slick-list {
    margin: 0 -15px;
}

/* Responsive */
@media (max-width: 768px) {
    .related-articles-title {
        font-size: 24px;
    }
	
	.related-articles-container {
    	padding: 0px 0 40px 0;
	}
	
	.related-articles-nav {
    	gap: 20px;
	}
}
