.card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #B5AFFF;
    box-shadow: 4px 4px 8px 2px #00000014;
    border-radius: 30px;
    /* Large rounded corners */
    background-color: transparent;
    width: 100%;
    padding: 1.3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Image Wrapper */
.card-image {
    width: 100%;
    height: 340px;
    border-radius: 24px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Area */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #211F54;
    font-size: 14px;
    font-weight: 500;
}

.divider {
    width: 1px;
    height: 18px;
    background-color: #211f541a;
}

.card-title {
    color: #211F54;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}

.card-description {
    color: #211F54;
    font-size: 18px;
    line-height: 1.6;
}

.form-search {
    width: 100%;
    border-radius: 50px;
    border: 1px solid #211F54;
    padding: 10px 10px 10px 40px;
    outline: none;
    color: #000000;
}

.form-search::placeholder {
    color: #000000;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .card {
        padding: 0.8rem;
    }

    .card-image {
        height: 180px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 14px;
    }

    .card-content {
        gap: 12px;
    }
}