.keyword-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  position: relative;
  padding-left: 1rem;
  border-left: 6px solid #fc9010;
}
.keyword-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 15px 30px rgba(0, 20, 40, 0.05);
  transition: 0.2s;
  border-bottom: 4px solid transparent;
}
.keyword-card:hover {
  border-bottom-color: #fc9010;
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 20, 40, 0.12);
}
.keyword-icon {
  width: 70px;
  height: 70px;
  background: #eef4ff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.keyword-icon i {
  font-size: 2.2rem;
  color: #337ab7;
}
.badge-platform {
  background: #337ab7;
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
}
.vendor-strip {
  background: #f6f9ff;
  border-radius: 50px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.graphics-card {
  background: linear-gradient(145deg, #fafcff, #ffffff);
  border: 1px solid #eef4ff;
}
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, #fc9010, transparent);
  margin: 3rem 0;
  width: 100%;
}
.main-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #12467c;
  margin-bottom: 2rem;
}
.main-section-title span {
  color: #fc9010;
}
.hardware-card-image {
  flex: 0 1 600px;
  width: 100%;
  max-width: 600px;
}
.hardware-card-image .image-wrapper {
  width: 100%;
  aspect-ratio: 2680 / 1502;
  overflow: hidden;
  border-radius: 20px;
  background: #eef2f7;
}
.hardware-card-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.aligned-tags {
  padding-left: 70px;
  padding-right: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.aligned-tags .badge-platform {
  margin-right: 0;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .hardware-card-image {
    max-width: 95%;
    flex-basis: 100%;
  }
  .aligned-tags {
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
}
