Template:ArticleCard/styles.css

From AbhiprayaVedi
/* ================ ARTICLE CARD STANDARDISED STYLES ================ */

.article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  height: 100%;
}

/* Image container styling at the top */
.article-thumbnail {
  width: 100%;
  max-height: 180px;
  overflow: hidden;
  background-color: #f7fafc;
  display: flex;
  justify-content: center; 
  align-items: center;
}

.article-thumbnail img {
  width: auto; 
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Informational text wrapper below the image */
.article-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Title / Displayname section with enforced font styling */
.article-title {
  font-family: 'Manjari', 'Meera', 'Rachana', 'Noto Sans Malayalam', sans-serif !important;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
}

.article-title a {
  color: #1a202c;
  text-decoration: none;
}

.article-title a:hover {
  color: #3182ce;
}

/* Standard compliant text containment replacing non-standard webkit-clamping */
.article-intro-wrapper {
  position: relative;
  max-height: 6.4em; /* 4 വരികൾക്കായി കൃത്യമായി ക്രമീകരിച്ചത് (1.6em line-height * 4) */
  overflow: hidden;
  margin-bottom: 6px !important; /* മുൻപുണ്ടായിരുന്ന 16px-ൽ നിന്നും 6px ആയി കുറച്ചു */
}

.article-intro {
  font-family: 'Manjari', 'Meera', 'Rachana', 'Noto Sans Malayalam', sans-serif !important;
  font-size: 0.95em;
  line-height: 1.6em;
  color: #4a5568;
  margin: 0 !important; /* മീഡിയവിക്കി P ടാഗിന്റെ ഡിഫോൾട്ട് മാർജിൻ പൂർണ്ണമായി ഒഴിവാക്കി */
  padding: 0 !important;
}

/* ഓതർ, ഡേറ്റ് എന്നിവ അടങ്ങുന്ന മെറ്റാ റോ */
.article-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto !important; /* കുറവ് വിവരങ്ങളുള്ള കാർഡുകളിലെ അധിക സ്ഥലം ഇതിന് മുകളിലേക്ക് മാറ്റും */
  margin-bottom: 0 !important;
  padding-top: 6px !important;  /* പാഡിങ് 8px-ൽ നിന്നും 6px ആയി കുറച്ചു */
  border-top: 1px solid #edf2f7;
  font-family: 'Manjari', 'Meera', 'Rachana', 'Noto Sans Malayalam', sans-serif !important;
}

/* മീഡിയവിക്കി ജനറേറ്റ് ചെയ്യാൻ സാധ്യതയുള്ള അനാവശ്യ മാർജിനുകളെ തടയാൻ */
.article-meta-row p,
.article-info p {
  margin: 0 !important;
  padding: 0 !important;
}

.article-author {
  font-size: 0.85em;
  font-weight: bold;
  color: #4a5568;
  margin: 0 !important;
}

.article-date {
  font-size: 0.8em;
  color: #718096;
  margin: 0 !important;
}
/* Optional placeholder class for hidden internal metadata layout */
.author-photo-hidden {
  display: none;
}