.earning-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
}

.earning-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.card-content {
    display: flex;
    align-items: stretch;
    min-height: 300px;
}

.text-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.sub-headline {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.image-section {
    flex: 0 0 300px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-content {
        flex-direction: column;
        min-height: auto;
    }

    .text-section {
        padding: 30px 25px;
        order: 1;
    }

    .image-section {
        flex: 0 0 250px;
        order: 2;
    }

    .main-headline {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .sub-headline {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    body {
        padding: 10px;
    }

    .text-section {
        padding: 25px 20px;
    }

    .main-headline {
        font-size: 1.6rem;
    }

    .sub-headline {
        font-size: 0.9rem;
    }

    .image-section {
        flex: 0 0 200px;
    }
}

.earning-card {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.earning-card:hover .image-placeholder::before {
    left: 100%;
}