body {
  margin: 0;
  font-family: Arial, sans-serif;
  direction: rtl;
  background-color: #f9f9f9;
  color: #222;
}

header {
  background: linear-gradient(90deg, #8e44ad, #f39c12);
  color: #fff;
  padding: 16px 0;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 1.8em;
}

.home-link {
  display: inline-block;
  margin-top: 8px;
  color: #ffeb3b;
  text-decoration: none;
  font-weight: bold;
}

.home-link:hover {
  text-decoration: underline;
}

main {
  max-width: 960px;
  margin: 30px auto;
  padding: 0 16px;
}

/* ----- כרטיס כתבה ----- */
.article-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
  margin-bottom: 16px;
  padding: 12px;
  gap: 16px;
  transition: all 0.2s ease;
}

.article-card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.article-thumb {
  width: 100%;
  height: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

.article-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card h2 {
  color: #8e44ad;
  font-size: 1.1em;
  margin: 0 0 6px;
  text-align: right;
}

.article-card p {
  line-height: 1.5;
  font-size: 0.9em;
  margin: 0 0 8px;
  text-align: right;
}

.article-card a {
  color: #8e44ad;
  font-weight: bold;
  font-size: 0.9em;
  text-decoration: none;
}

.article-card a:hover {
  text-decoration: underline;
}

/* ✅ לוגו */
.article-logo {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  float: right;
  margin-left: 10px;
  margin-bottom: 5px;
}
