/* --- STRUCTURAL & VISUAL DESIGN FOR OBJET DU MOIS --- */

.odm-container {
    box-sizing: border-box;
    position: relative;
    background-color: #1A2332;
    overflow: hidden;
    width: 100%;
    transition: all 0.3s ease;
	min-height: 230px;
    height: calc(100% - 20px);
}

.odm-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    height: 100%;
    width: 100%;
    outline: none;
}

/* --- CENTERED IMAGE AREA --- */
.odm-image-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 4rem 2rem 4rem 2rem;
    min-height: 280px;
}

.odm-img {
    max-width: 80%;
    max-height: 300px;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	position: absolute;
}

.odm-card-link:hover .odm-img {
    transform: scale(1.08);
}

/* --- BOTTOM LEFT TEXT AREA --- */
.odm-text-area {
    padding: 0 2.5rem 2.5rem 2.5rem;
    text-align: left;
}

.odm-pretitle {
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

.odm-title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    color: #E0E6ED;
    margin: 0;
    opacity: 0.85;
}
