* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #141414;
    margin-top: 50px;
}

/* Base Card Styles */
.award-card {
    padding: 40px 10%;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Theme Variations */
.theme-dark {
    background-color: #141414;
}

.theme-pink {
    background-color: #b40811;
}

/* Typography */
.award-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.date-text {
    color: #ff0000; 
    font-weight: bold;
    margin-bottom: 15px;
}

.theme-pink .date-text {
    color: white;
}

/* Layout for Image and Text */
.card-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 900px) {
    .card-body {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }
}

/* --- Left Side: Main Image --- */
.image-side {
    flex: 1;
}

.award-image {
    width: 100%;
    /* max-width: 600px; */
    height: auto;
    border-radius: 4px;
    display: block;
    object-fit: cover;
}

.image-caption {
    margin-top: 15px;
}

.company-name {
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    opacity: 0.8;
}

.caption-heading {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: bold;
}

/* --- Right Side: Text Info --- */
.info-side {
    flex: 1;
    /* Limits width on very large screens for better readability */
    max-width: 650px; 
}

.description {
    line-height: 1.6;
    font-size: 1rem;
}

.description p {
    margin-bottom: 20px;
}

/* --- NEW: Smaller Card Image below text --- */
.small-card-image {
    /* Ensures it doesn't overflow its container */
    max-width: 100%;
    /* Sets a fixed height for consistency, adjust as needed */
    height: 250px; 
    width: auto;
    
    /* Styling to make it look like a "card" */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    object-fit: cover; /* Ensures image fills the area without stretching */
    display: block;
    margin-top: 30px; /* Space between text and this image */
}