.also-read-wrapper {
  background: #fff;
  border-left: 5px solid #2b6cb0;
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
}

.also-read-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.also-read-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: box-shadow .2s;
}

.also-read-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.also-read-item a {
  display: flex;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  color: #111827;
}

.also-read-thumb {
  width: 90px;
  height: 70px;
  margin-right: 15px;
  flex-shrink: 0;
}

.also-read-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.also-read-content h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .also-read-thumb {
    width: 70px;
    height: 60px;
  }
}