.publishing-approach-section {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 200, 0, .08), transparent 34%),
    #080808;
  overflow: hidden;
}

.publishing-approach-header {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 80px;
}

.publishing-approach-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  margin: 24px 0;
}

.publishing-approach-header h2::first-line {
  color: var(--primary);
}

.publishing-approach-header p {
  max-width: 760px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.76);
}

/* FOLDER DESIGN */

.publishing-folder {
  max-width: 1100px;
  margin: auto;
}

.folder-tabs {
  display: flex;
  gap: 10px;
  padding-left: 34px;
}

.folder-tabs span {
  padding: 16px 28px;
  border-radius: 18px 18px 0 0;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.folder-tabs span:first-child {
  background: var(--primary);
  color: #111;
}

.folder-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;

  padding: 55px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow);
}

.folder-main h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--white);
}

.folder-main h3::first-line {
  color: var(--primary);
}

.folder-main p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.74);
  margin-bottom: 22px;
}

/* CHECKLIST */

.folder-checklist {
  display: grid;
  gap: 16px;
  align-content: center;
}

.folder-checklist div {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px 20px;
  border-radius: 18px;

  background: linear-gradient(145deg, #ffd54a, #f5be18);
  color: #111;

  font-weight: 800;
}

.folder-checklist i {
  color: #7a5200;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .folder-content {
    grid-template-columns: 1fr;
  }

  .folder-tabs {
    flex-wrap: wrap;
    padding-left: 0;
  }

  .folder-tabs span {
    border-radius: 18px;
  }
}

@media (max-width: 600px) {
  .folder-content {
    padding: 34px;
  }

  .folder-tabs span {
    flex: 1;
    text-align: center;
    padding: 14px;
  }
}