/* ========================================
   Topic Item Component
======================================== */
.topic-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.topic-item-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.72px;
  color: #191919;
  white-space: nowrap;
}

.topic-item-image-wrapper {
  width: 240px;
  height: 160px;
  background-color: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.topic-item-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.topic-item-description {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0.42px;
  color: #6F6F6F;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .topic-item {
    padding: 30px 20px;
    gap: 20px;
  }

  .topic-item-title {
    font-size: 18px;
    letter-spacing: 0.64px;
  }

  .topic-item-image-wrapper {
    width: 200px;
    height: 140px;
  }

  .topic-item-description {
    font-size: 13px;
    letter-spacing: 0.39px;
  }
}
