:root {
    --Grey-900: #141414;  
    --Grey-800: #1F1F1F;  
    --Grey-700: #333333;  
    --Green: #c4f82a;  
    --White: #ffffff;
}

body {
    background-color: var(--Grey-900);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    margin: 0;
}

.card {
    background-color: var(--Grey-800);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    width: 327px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.featured-image {
        width: 100px; /* أو أي حجم آخر */
        height: 100px; /* أو أي حجم آخر */
        object-fit: cover; /* لتغطية الصورة بالكامل داخل الحيز المخصص لها */

}

.card h2, .card p {
    color: var(--White);
    font-family: 'Inter', sans-serif;
}

.card .location {
    color: var(--Green);
    font-weight: bold;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn {
    width: 304px;
    height: 45px;
    background-color: var(--Grey-700);
    color: var(--White);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn:hover {
    background-color: var(--Green);
    color: var(--Grey-800);
}