@charset "UTF-8";
html {
  font-size: 20px;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.container {
  max-width: 1300px;
}

.h1,
.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #313131;
}

.h1 {
  font-size: 40px;
}

.section-title {
  font-size: 32px;
}

.subtitle {
  font-size: 24px;
  font-weight: 600;
}

.white {
  color: #fff;
  background-color: #17223a;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background-color: #006cb5;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  border-radius: 10px;
  border: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-main:hover {
  background-color: #0d4471;
  color: #fff;
}

.btn-main:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-main--sm {
  padding: 8px 20px;
  font-size: 16px;
}

.btn-main--lg {
  padding: 10px 36px;
  font-size: 24px;
}

.btn-main--full {
  width: 100%;
  display: block;
}

@media (max-width: 1000px) {
  body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }
  .h1 {
    font-size: 25px;
  }
  .section-title {
    font-size: 20px;
  }
  .subtitle {
    font-size: 20px;
    font-weight: 600;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.licenses-page .section-title {
  letter-spacing: 0.2px;
}

.licenses-card {
  background: #ffffff;
  border: 1px solid rgba(15, 61, 46, 0.1);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.licenses-table-wrap {
  overflow-x: auto;
}

.licenses-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 860px;
}

.licenses-table thead th {
  text-align: left;
  font-size: 14px;
  color: rgba(15, 61, 46, 0.8);
  background: rgba(15, 61, 46, 0.04);
  padding: 16px 18px;
  border-bottom: 1px solid rgba(15, 61, 46, 0.1);
}

.licenses-table tbody td {
  font-size: 18px;
  padding: 18px;
  vertical-align: top;
  border-bottom: 1px solid rgba(15, 61, 46, 0.08);
  background: #fff;
}

.col-title {
  width: 42%;
}

.col-issuer {
  width: 36%;
}

.col-period {
  width: 16%;
}

.col-download {
  width: 6%;
  text-align: right;
}

.cell-download {
  text-align: right;
}

.doc-title {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.86);
  line-height: 1.35;
}

.doc-issuer,
.doc-period {
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.45;
}

.doc-link {
  display: inline-flex;
  background: #006cb5;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.doc-link:hover {
  background: #015891;
}

.doc-link.is-disabled {
  opacity: 0.45;
  cursor: default;
}

.empty-row {
  text-align: center;
  padding: 26px 18px;
  color: rgba(0, 0, 0, 0.6);
}

/* Вертикальное выравнивание содержимого по центру */
.licenses-table thead th,
.licenses-table tbody td {
  vertical-align: middle;
}

/* Чередование строк: нечётные белые, чётные синие */
.licenses-table tbody tr:nth-child(even) td {
  background: #e9f0fa;
}/*# sourceMappingURL=style.css.map */