/**
 * Blog Cards Styling
 * Custom styles for the blog post cards in sliders
 */

/* Card Container */
.related-post {
    background-color: #1A1A1A;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Card Image */
.related-post-image {
    position: relative;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Date Display */
.related-post-date {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* Title Styling */
.related-post-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Mobile Styles */
@media (max-width: 480px) {
    .related-post {
        background-color: #1A1A1A;
        border-radius: 8px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .related-post-image {
        height: 220px;
        width: 100%;
    }
    
    .related-post-content {
        padding: 15px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    .related-post-date {
        font-size: 14px;
        margin-bottom: 4px;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .related-post-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 10px;
        margin-top: 4px;
        height: auto;
    }
}
