.anticor-title {
  text-align: center;
  color: #0f5a20;
  font-size: 30px;
  font-weight: 800;
  margin: 22px 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.big-btns{
  display: grid;
  gap: 16px;
  margin: 18px 0 10px;

  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

.big-btns:has(> .big-btn:nth-child(3)){
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.big-btns:has(> .big-btn:nth-child(2)):not(:has(> .big-btn:nth-child(3))){
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.big-btns:not(:has(> .big-btn:nth-child(2))){
  grid-template-columns: minmax(0, 1fr);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.big-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 70px;
  padding: 14px 14px;

  background: rgba(15, 90, 32, .035);
  border: 1px solid rgba(15, 90, 32, .14);
  border-radius: 16px;

  color: #0f5a20 !important;
  text-decoration: none;

  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  text-align: center;

  transition: background .15s ease, box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}

.big-btn:hover {
  background: rgba(15, 90, 32, .05);
  border-color: rgba(15, 90, 32, .20);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.big-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

@media (max-width: 820px){
  .big-btns:has(> .big-btn:nth-child(3)){
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px){
  .big-btns{
    grid-template-columns: 1fr !important;
    max-width: none !important;
    margin-left: 0;
    margin-right: 0;
  }
}

.anticor-separator {
  margin: 18px 0 22px;
  border: 0;
  height: 1px;
  background: rgba(15, 90, 32, .14);
}

.docs-list {
  margin: 10px 0 30px;
}

.doc-row {
  display: grid;
  grid-template-columns: 64px 1fr 170px;
  gap: 16px;
  align-items: center;

  padding: 16px 18px;
  margin: 10px 0;

  background: rgba(15, 90, 32, .035);
  border: 1px solid rgba(15, 90, 32, .12);
  border-radius: 16px;

  transition: background .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.doc-row:hover {
  background: rgba(15, 90, 32, .05);
  border-color: rgba(15, 90, 32, .18);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.doc-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 32px;
  min-width: 44px;
  padding: 0 12px;
  border-radius: 999px;

  color: #0f5a20;
  background: rgba(15, 90, 32, .06);
  border: 1px solid rgba(15, 90, 32, .10);

  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  font-size: 0 !important;
}

.doc-type:before {
  content: "✓";
  font-size: 18px;
  line-height: 1;
}

.doc-type[data-label]:before {
  content: attr(data-label);
  font-size: 12px;
  line-height: 1;
}

.doc-row.is-pdf .doc-type {
  color: #b00020;
  background: rgba(176, 0, 32, .08);
  border-color: rgba(176, 0, 32, .14);
}

.doc-row.is-drive .doc-type {
  color: #1a57c7;
  background: rgba(26, 87, 199, .08);
  border-color: rgba(26, 87, 199, .14);
}

.doc-row.is-web .doc-type {
  color: #444;
  background: rgba(0, 0, 0, .05);
  border-color: rgba(0, 0, 0, .10);
}

.doc-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f1f1f;
  line-height: 1.35;
}

.doc-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;
  padding: 0 18px;
  border-radius: 12px;

  background: #0f5a20;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;

  transition: background .15s ease, box-shadow .15s ease;
}

.doc-open:hover {
  background: #2e7d32;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.doc-row>.doc-open {
  position: relative;
  padding-left: 18px;
}

.doc-row>.doc-open:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(15, 90, 32, .12);
}

@media (max-width: 900px) {
  .doc-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .doc-open {
    width: 100%;
  }

  .doc-row>.doc-open {
    padding-left: 0;
  }

  .doc-row>.doc-open:before {
    display: none;
  }
}

.dlpg-photos {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 25px 0;
}

.dlpg-photo {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.dlpg-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}