/* promation-style-cwe2.css - wersja uproszczona i stabilna */

.cw-container {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #333;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
  line-height: 1.6;
}

.cw-header-section {
  border-left: 5px solid #00b4e1;
  padding: 18px 25px;
  margin: 0 0 28px 0;
  background: linear-gradient(to right, #f8fcff, #ffffff);
  border-radius: 0 4px 4px 0;
}

.cw-title {
  font-size: 26px;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  padding: 0;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.cw-lead {
  font-size: 15px;
  color: #666;
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.6;
}

.cw-section {
  padding: 22px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cw-h2 {
  font-size: 18px;
  color: #111;
  margin: 0 0 14px 0;
  padding: 0 0 8px 0;
  font-weight: 700;
  line-height: 1.35;
  border-bottom: 1px solid #f0f0f0;
}

.cw-paragraph {
  font-size: 15px;
  margin: 0 0 18px 0;
  color: #444;
  line-height: 1.7;
}

.cw-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin: 20px 0 25px 0;
}

.cw-card {
  padding: 15px;
  background: #fcfdfe;
  border-radius: 8px;
  border: 1px solid #eef2f6;
  border-top: 4px solid #00b4e1;
}

.cw-card h3 {
  margin: 0 0 8px 0;
  font-size: 17px;
  color: #111;
  line-height: 1.35;
}

.cw-card p {
  margin: 0;
  color: #444;
  line-height: 1.65;
}

.cw-table-wrapper {
  margin: 20px 0;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  overflow-x: auto;
}

.cw-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.cw-table th {
  background: #f8fbff;
  padding: 12px;
  text-align: left;
  font-weight: 700;
  color: #111;
}

.cw-table td {
  padding: 12px;
  border-top: 1px solid #f0f0f0;
  color: #444;
}

.cw-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cw-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #444;
}

.cw-list li::before {
  content: "•";
  color: #00b4e1;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.cw-link {
  color: #00b4e1;
  text-decoration: none;
  font-weight: 700;
}

.cw-link:hover {
  text-decoration: underline;
}

.cw-faq-item {
  margin-bottom: 16px;
}

.cw-faq-q {
  display: block;
  margin-bottom: 4px;
  color: #00b4e1;
  font-weight: 700;
  line-height: 1.4;
}

.cw-faq-a {
  margin: 0;
  color: #555;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .cw-container {
    padding: 8px 0;
  }

  .cw-header-section {
    /* Poprawka: większy górny padding zapobiega ucinaniu przy krawędzi strony */
    padding: 25px 16px 18px 16px;
    margin-bottom: 22px;
  }

  .cw-title {
    font-size: 22px;
    /* Poprawka: większa wysokość linii dla bezpieczeństwa wysokich liter i polskich znaków */
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .cw-h2 {
    font-size: 17px;
  }

  .cw-card {
    padding: 12px;
  }

  .cw-table {
    min-width: 480px;
  }
}