.card-image-background {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

.card-image-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 1;
}

.card-content {
    max-width: 800px;
}

.card-meta {
    margin-bottom: 15px;
}

.card-date {
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.card-title {
    font-size: 2.2em;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.card-description {
    font-size: 1.1em;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-read-more {
    font-size: 1.1em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.card-read-more:hover {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .card-image-background {
        height: 400px;
    }

    .card-image-text {
        padding: 25px;
    }

    .card-title {
        font-size: 1.8em;
        margin-bottom: 10px;
    }

    .card-description {
        font-size: 1em;
        -webkit-line-clamp: 2;
        margin-bottom: 15px;
    }

    .card-date {
        font-size: 0.8em;
    }

    .card-read-more {
        font-size: 1em;
    }
} 