/* Container - Removed all visual weight */
.article-thumb {
vertical-align: top;
width: 150px;
padding: 0px 0px 0px 0px;
background: transparent !important; /* Forces removal of gray */
border: none !important; /* Forces removal of borders */
display: inline-block;
text-align: left;
box-sizing: border-box;
}
/* Image wrapper - Ensures no background is inherited */
.article-thumb__imgwrap {
width: 100%;
height: 150px;
display: flex;
align-items: center;
justify-content: flex-start;
overflow: hidden;
margin-bottom: 0px;
background: transparent !important;
}
/* Targeting MediaWiki's internal image and link classes specifically */
.article-thumb__imgwrap img,
.article-thumb__imgwrap .mw-file-element,
.article-thumb__imgwrap a.mw-file-description {
display: block;
width: 150px !important; /* Forces the width */
height: 150px !important; /* Forces the height */
/* ADD THESE TWO LINES */
object-position: top; /* Ensures the CEO's head isn't cut off if cropped */
border: none !important;
background: none !important;
box-shadow: none !important;
}
/* Content Area - Using the requested #202122 color */
.article-thumb__content {
font-size: 0.85em;
line-height: 1.4;
color: #202122;
}
.article-thumb__title a {
font-weight: bold;
color: #202122;
text-decoration: none;
}
.article-thumb__subtitle,
.article-thumb__description {
color: #202122; /* Normal text color as requested */
display: block;
}