#RESULTS {
  background-color: var(--bg-lightgray);
}
#RESULTS .ank {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
#RESULTS .ank .Anchor {
  min-width: 160px;
  padding: 12px 32px;
  border: 2px solid var(--main-blue);
  border-radius: 4px;
  background: #fff;
  color: var(--main-blue);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.3s, color 0.3s;
}
#RESULTS .ank .Anchor:hover {
  background-color: var(--main-blue);
  color: var(--text-white);
}
#RESULTS .container .ttl {
  font-size: 24px;
  font-weight: 700;
  margin: 56px 0 32px;
}
#RESULTS .container .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
#RESULTS .container .content .card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
#RESULTS .container .content .card .img img {
  transition: transform 0.3s ease;
}
#RESULTS .container .content .card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
#RESULTS .container .content .card:hover .img img {
  transform: scale(1.05);
}
#RESULTS .container .content .card .text {
  padding: 16px;
}
#RESULTS .container .content .card .text .name {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#RESULTS .container .content .card .text .date {
  display: block;
  font-size: 12px;
  color: #888;
}
@media (max-width: 1000px) {
  #RESULTS .container .content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  #RESULTS .container .content {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}