/* ===================================== */
/* ========== Global Styles ============ */
/* ===================================== */

html {
  font-size: 16px;
  line-height: 1.6;
}

body {
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

/* ================================ */
/* ========== Typography ========== */
/* ================================ */

/* Main Headings */
h1 {
  font-size: 2rem; /* ~32px */
  font-weight: 700;
  color: #222;
}

h2 {
  font-size: 1.75rem; /* ~28px */
  font-weight: 600;
  color: #333;
}

h3 {
  font-size: 1.5rem; /* ~24px */
  font-weight: 600;
  color: #444;
}

/* Paragraphs & Lists */
p, li {
  font-size: 1rem; /* ~16px */
  color: #555;
  line-height: 1.5;
  /*margin-bottom: 1rem;*/
}

/*ul, ol {
  padding-left: 1.5rem;
}

 Links */
a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
}

/* Blockquotes */
blockquote {
  font-size: 1.125rem; /* ~18px */
  font-style: italic;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background-color: #f9f9f9;
  border-left: 4px solid #ccc;
  color: #666;
}

/* ================================ */
/* ======= Layout & Containers ==== */
/* ================================ */

/* Article Container */
.article-container {
  width: 70%;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .article-container {
    width: 90%;
    padding: 1.5rem;
  }
}

/* ================================ */
/* ========== Components ========== */
/* ================================ */

/* Inner Card Styling */
.KbCategory__box {
  border: none;
  background-color: #f9f9f9;
  margin-top: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.KbCategory__box:hover {
  background-color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Widget Containers */
.WidgetContainer__contentList:not(:empty), .KbDetailRtContainer__widgetSection {
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* Hide Empty List */
.WidgetContainer__contentList:empty {
  display: none;
}

/* Flex Container for Media Objects */
.MediaObject__mediaObject {
  display: flex;
  align-items: center;
}

/* Avatar Styling */
.KbCategory__avatarPhoto {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Media Content Styling */
.MediaObject__mediaContent {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
}

.MediaObject__mediaContent h3 {
  margin: 0;
  font-size: 1.125rem;
  color: #333;
}

.MediaObject__mediaContent p {
  margin-top: 5px;
  font-size: 0.875rem;
  color: #666;
}

/* ================================ */
/* ======= Table & Forms ========== */
/* ================================ */

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th, td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

th {
  background-color: #f0f0f0;
  font-weight: bold;
  color: #333;
}

td {
  background-color: #fff;
  color: #666;
}

/* ================================ */
/* ======= Footer & Utility ======= */
/* ================================ */

/* Footer Styling */
footer {
  text-align: center;
  font-size: 0.875rem;
  color: #888;
  border-top: 1px solid #ddd;
}

/* ================================ */
/* ======== Visibility Fixes ====== */
/* ================================ */

/* Hide Specific Elements*/
.Footer__footerBg,
.DottedMenuPopup__dottedIcon,
.KbDetailRtContainer__widgetSection:first-of-type {
  display: none !important;
}
 
