.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    background-color: #f5f5f5;
}

.card-main {
    display: flex;
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.card-img {
    flex-basis: 40%;
}

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

.card-content {
    flex-basis: 60%;
    padding: 40px;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.card-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.card-date {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: #2dcc70;
    font-weight: 700;
}

.date {
    margin: 0;
}


/* Custom */