/* News, About and Contact page polish - 2026-05-30 */
.atr-page {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 60px;
  color: #24364a;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

.atr-page a {
  text-decoration: none;
}

.atr-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .75fr);
  gap: 26px;
  margin-bottom: 30px;
  padding: 34px;
  border: 1px solid rgba(25, 60, 90, .1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(49, 164, 225, .13), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #fff, #f7fbfe);
  box-shadow: 0 18px 45px rgba(22, 45, 68, .08);
}

.atr-eyebrow {
  margin: 0 0 10px;
  color: #006aa8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.atr-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #142638;
  font-size: 34px;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: 0;
}

.atr-hero-copy > p:not(.atr-eyebrow),
.atr-section-intro {
  max-width: 860px;
  margin: 16px 0 0;
  color: #526273;
  font-size: 16px;
  line-height: 1.78;
}

.atr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.atr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #007fc5;
  border-radius: 6px;
  background: linear-gradient(90deg, #008dd4, #01559c);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.atr-button:hover {
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 103, 170, .2);
}

.atr-button-secondary {
  background: #fff;
  color: #006aa8;
}

.atr-button-secondary:hover {
  color: #004f82;
  background: #f1f8fc;
}

.atr-hero-panel,
.atr-card,
.atr-form-card {
  border: 1px solid rgba(25, 60, 90, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(22, 45, 68, .05);
}

.atr-hero-panel {
  padding: 24px;
  background: rgba(255, 255, 255, .78);
}

.atr-hero-panel h2,
.atr-card h3 {
  margin: 0;
  color: #172b3d;
  line-height: 1.35;
}

.atr-hero-panel h2 {
  margin-bottom: 14px;
  font-size: 19px;
}

.atr-hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.atr-hero-panel li {
  position: relative;
  padding: 9px 0 9px 18px;
  color: #4d5f70;
  font-size: 14px;
  line-height: 1.55;
  border-top: 1px solid rgba(25, 60, 90, .08);
}

.atr-hero-panel li:first-child {
  border-top: 0;
}

.atr-hero-panel li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #31a4e1;
}

.atr-section {
  margin-top: 30px;
}

.atr-section-head {
  margin-bottom: 16px;
}

.atr-section-head h2 {
  margin: 0;
  color: #172b3d;
  font-size: 24px;
  font-weight: 720;
  line-height: 1.3;
  letter-spacing: 0;
}

.atr-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.atr-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.atr-card {
  padding: 20px;
}

.atr-card h3 {
  font-size: 17px;
}

.atr-card p {
  margin: 9px 0 0;
  color: #5d6d7e;
  font-size: 14px;
  line-height: 1.7;
}

.atr-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.atr-news-card {
  overflow: hidden;
  border: 1px solid rgba(25, 60, 90, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(22, 45, 68, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.atr-news-card:hover {
  border-color: rgba(49, 164, 225, .42);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(22, 45, 68, .1);
}

.atr-news-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.atr-news-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef5f9;
  transition: transform .35s ease;
}

.atr-news-card:hover .atr-news-image {
  transform: scale(1.035);
}

.atr-news-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(49, 164, 225, .13), transparent),
    #eef5f9;
}

.atr-news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.atr-date {
  color: #006aa8;
  font-size: 12px;
  font-weight: 700;
}

.atr-news-title {
  margin: 9px 0 0;
  color: #172b3d;
  font-size: 18px;
  font-weight: 720;
  line-height: 1.35;
}

.atr-news-excerpt {
  margin: 10px 0 0;
  color: #647384;
  font-size: 14px;
  line-height: 1.62;
}

.atr-card-link {
  margin-top: auto;
  padding-top: 15px;
  color: #006aa8;
  font-size: 14px;
  font-weight: 720;
}

.atr-card-link::after {
  content: ">";
  margin-left: 7px;
}

.atr-pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.atr-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(25, 60, 90, .12);
  border-radius: 6px;
  background: #fff;
  color: #4c5c6e;
  font-size: 14px;
}

.atr-pagination .page-numbers.current,
.atr-pagination .page-numbers:hover {
  border-color: rgba(49, 164, 225, .48);
  background: #edf8fe;
  color: #005a9c;
}

.atr-about-layout,
.atr-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: 24px;
  align-items: start;
}

.atr-rich-card {
  padding: 28px;
}

.atr-rich-card h2 {
  margin: 0 0 14px;
  color: #172b3d;
  font-size: 24px;
  line-height: 1.3;
}

.atr-rich-card p,
.atr-rich-card li {
  color: #526273;
  font-size: 16px;
  line-height: 1.78;
}

.atr-rich-card p {
  margin: 0 0 16px;
}

.atr-rich-card ul {
  margin: 0;
  padding-left: 20px;
}

.atr-about-side li {
  margin-bottom: 8px;
}

.atr-process-grid .atr-card {
  position: relative;
  overflow: hidden;
}

.atr-process-grid .atr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #008dd4, #01559c);
}

.atr-contact-list {
  display: grid;
  gap: 12px;
}

.atr-contact-item {
  padding: 16px;
  border: 1px solid rgba(25, 60, 90, .1);
  border-radius: 8px;
  background: #fff;
}

.atr-contact-item span {
  display: block;
  color: #006aa8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.atr-contact-item strong,
.atr-contact-item a {
  display: block;
  margin-top: 6px;
  color: #172b3d;
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.atr-form-card {
  padding: 24px;
}

.atr-form-card h2 {
  margin: 0 0 8px;
  color: #172b3d;
  font-size: 24px;
  line-height: 1.3;
}

.atr-form-card > p {
  margin: 0 0 18px;
  color: #5d6d7e;
  font-size: 14px;
  line-height: 1.7;
}

.atr-message-form {
  display: grid;
  gap: 14px;
}

.atr-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.atr-form-group {
  display: grid;
  gap: 7px;
}

.atr-form-group label {
  color: #24364a;
  font-size: 13px;
  font-weight: 700;
}

.atr-form-group input,
.atr-form-group textarea {
  width: 100%;
  border: 1px solid rgba(25, 60, 90, .16);
  border-radius: 6px;
  background: #f8fbfd;
  color: #172b3d;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.atr-form-group input {
  height: 42px;
  padding: 0 12px;
}

.atr-form-group textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}

.atr-form-group input:focus,
.atr-form-group textarea:focus {
  border-color: rgba(49, 164, 225, .7);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(49, 164, 225, .12);
}

.atr-submit {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, #008dd4, #01559c);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.message-form-notice {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
}

.message-form-notice.error {
  color: #8a2f16;
  background: #fff1eb;
}

.message-form-notice.success {
  color: #11613b;
  background: #eaf8f0;
}

@media (max-width: 1180px) {
  .atr-grid-4,
  .atr-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .atr-hero,
  .atr-about-layout,
  .atr-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .atr-page {
    width: min(100% - 24px, 640px);
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .atr-hero {
    padding: 22px;
  }

  .atr-hero h1 {
    font-size: 26px;
  }

  .atr-hero-copy > p:not(.atr-eyebrow),
  .atr-rich-card p,
  .atr-rich-card li {
    font-size: 15px;
  }

  .atr-actions,
  .atr-form-row {
    grid-template-columns: 1fr;
  }

  .atr-actions {
    flex-direction: column;
  }

  .atr-button {
    width: 100%;
  }

  .atr-grid-4,
  .atr-grid-3,
  .atr-news-grid {
    grid-template-columns: 1fr;
  }

  .atr-section-head h2,
  .atr-rich-card h2,
  .atr-form-card h2 {
    font-size: 21px;
  }
}
