#word-of-the-day {
    display:flex;
    align-items:center;
    gap:0.3rem;
    margin-bottom: 0.6rem;
    background-color:#f0f0f0;
    padding: 0.3rem;
    border-radius: 4px;
    max-width: 17rem;
}

.word-of-the-day-image-wrapper {
    position: relative;
    container-type: inline-size;
    min-width: 2.5rem;
}

.word-of-the-day-image-wrapper img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: fill;
}

#word-of-the-day-calendar-day {
    position: absolute;
    left: 37%;
    top: 71%;
    transform: translate(-50%, -50%);
    font-size: 23cqw;
    font-weight: 600;
    color: #333333;
    line-height: 1;
    letter-spacing: 0.02em;
    font-family: 'Jersey 10';
    pointer-events: none;
}

#word-of-the-day > div:nth-child(2) {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    margin-left: 0rem;
    margin-right: 0.3rem;
    margin-top: 0.2rem;
    margin-bottom: 0.1rem;
}

#word-of-the-day-header {
    font-size: 0.5rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: -0.1rem;
}

.word-of-the-day-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#word-of-the-day-author {
    font-size: 0.3rem;
    color: #adadad;
    text-decoration: none;
}

#word-of-the-day-author:hover {
    color: #6f6f6f;
    text-decoration: underline;
}

#word-of-the-day-value {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333333;
}

#word-of-the-day-description {
    font-size: 0.6rem;
    color: #555555;
}