a.se-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.se-card:hover {
  border-color: #ee7115;
  border-top-width: 3px;
  opacity: 0.9;
}

.se-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-top: 3px solid #ee7115;
  border-radius: 8px;
  padding: 20px;
  flex: 1;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.se-card-icon {
  width: 32px;
  height: 32px;
  background: #fdf0e6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
  color: #ee7115;
}

.se-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.se-card-body {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.se-card-body p {
  margin: 0;
}

.se-card-badge {
  display: inline-block;
  background: #fdf0e6;
  color: #c45a0a;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  padding: 6px 14px;
  margin-top: 12px;
}

@media screen and (max-width: 767px) {
  .se-card {
    min-width: 100%;
  }
.se-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 16px;
}

.se-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}