/* ===================== SKS CORPORATE OVERVIEW ===================== */
.sks-corp-section {
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.sks-corp-tag {
  display: inline-block;
  color: var(--brand-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.sks-corp-title {
  color: var(--brand-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sks-corp-subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Cards */
.sks-corp-overview-card,
.sks-corp-history-card {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(31, 77, 58, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.sks-corp-overview-card {
  background:
    radial-gradient(circle at top right, rgba(201, 162, 39, 0.12), transparent 35%),
    #ffffff;
}

.sks-corp-history-card {
  background:
    radial-gradient(circle at bottom left, rgba(31, 77, 58, 0.10), transparent 35%),
    #ffffff;
}

.sks-corp-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--brand-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}

.sks-corp-overview-card h3,
.sks-corp-history-card h3 {
  color: var(--brand-primary);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.sks-corp-overview-card p,
.sks-corp-history-card p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.96rem;
}

/* History */
.sks-corp-history-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.sks-corp-history-head .sks-corp-card-icon {
  margin-bottom: 0;
  flex: 0 0 70px;
}

.sks-corp-history-head p {
  margin-bottom: 0;
}

/* Timeline */
.sks-corp-timeline {
  position: relative;
  padding-left: 24px;
}

.sks-corp-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(31, 77, 58, 0.18);
}

.sks-corp-timeline-item {
  position: relative;
  padding-bottom: 1.1rem;
}

.sks-corp-timeline-item:last-child {
  padding-bottom: 0;
}

.sks-corp-timeline-item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 7px;
  width: 16px;
  height: 16px;
  background: var(--brand-secondary);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}

.sks-corp-year {
  display: inline-block;
  color: var(--brand-primary);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.sks-corp-timeline-item p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

/* Responsive */
@media (max-width: 767.98px) {
  .sks-corp-title {
    font-size: 1.6rem;
  }

  .sks-corp-overview-card,
  .sks-corp-history-card {
    padding: 1.4rem;
    border-radius: 22px;
  }

  .sks-corp-history-head {
    flex-direction: column;
  }

  .sks-corp-card-icon,
  .sks-corp-history-head .sks-corp-card-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    font-size: 1.45rem;
  }
}