.today-in-history-list {
    margin: 1rem auto;
    max-width: 80%;
    width: 100%;
}

.tih-event {
    display: flex;
	padding: 1rem;
	margin-bottom: 1rem;
    background-color: #EEE;
    align-items: flex-start;
}

.tih-date {
    font-weight: bold;
	color: #C72E2E;
    padding-bottom: 1em;
}

.tih-type {
	font-weight: bold;
	color: #000;
}

/* Left: Text */
.tih-left {
    flex: 1;               /* left column expands */
    text-align: left;
    margin-right: 0.5rem;
}

/* Center: Image */
.tih-center {
    flex: 0 0 120px;       /* fixed width for image */
    text-align: center;
    margin: 0 0.5rem;
}

.tih-cover {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.tih-tags{ 
	margin-top: 1em;
}
.tih-tags .label {
	font-weight: bold;
	color: #000;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .tih-event {
        flex-direction: column;
        padding: 0.15rem 0;
    }
    .tih-left, .tih-center, .tih-right {
        margin: 0 0 0.25rem 0;
        text-align: center;
    }
    .tih-cover { width: 80px; height: 80px; }
}