
html:not(.html-home-page) .master-wrapper-content {
  max-width: 1500px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 769px) {
  html:not(.html-home-page) .master-wrapper-content {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1001px) {
  html:not(.html-home-page) .master-wrapper-content {
    max-width: 992px;
  }
}

@media (min-width: 1240px) {
  html:not(.html-home-page) .master-wrapper-content {
    max-width: 1200px;
    width: 90%;
  }
}

@media (min-width: 1367px) {
  html:not(.html-home-page) .master-wrapper-content {
    max-width: 1500px;
    width: 90% !important;
  }
}

.container {
    max-width: 1500px;
    width: calc(100% - 30px);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
@media (min-width: 769px) {
  .container {
    /* max-width: 748px; */
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1001px) {
  .container {
    max-width: 992px;
  }
}
@media (min-width: 1240px) {
  .container {
    max-width: 1200px;
    width: 90%;
  }
}
@media (min-width: 1367px) {
  .container {
    max-width: 1500px;
    width: 90% !important;
  }
}



.news.container {
  margin-top: 150px;
}
.news.container .topic-block-title {
    display:none;
}
.download-app-page {
  padding: 40px 20px 60px;
  overflow: visible;
}

.download-app-inner {
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 40px;
  overflow: visible;
  background: #eff6ff;
  border-radius: 20px;
  padding-inline:100px;
}

/* Left: Phone - 45%, overflows background top & bottom */
.download-app-phone-wrap {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

  .download-app-phone-wrap img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: -60px;
    margin-bottom: -80px;
    max-height: 600px;
  }

.download-app-phone-placeholder {
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 14px;
  margin-top: -60px;
  margin-bottom: -80px;
}

  .download-app-phone-placeholder .placeholder-dim {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
  }

/* Right: Content - 55% */
.download-app-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.download-app-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px;
  line-height: 1.2;
}

.download-app-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 28px;
}

.download-app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.download-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 135px;
  min-height: 40px;
  padding: 8px 16px;
  background-color: #fff;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

  .download-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .download-app-btn img {
    max-height: 40px;
    width: auto;
  }

.download-app-btn-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #94a3b8;
}

  .download-app-btn-placeholder .placeholder-dim {
    font-size: 10px;
    opacity: 0.7;
  }

.download-app-btn-google,
.download-app-btn-appstore {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

/* Mobile */
@media (max-width: 768px) {
  .download-app-page {
    padding: 24px 16px 48px;
  }
  .news.container {
    margin-top: 100px;
  }
  .download-app-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-radius:10px;
    padding-inline:20px;
  }

  .download-app-phone-wrap {
    flex: none;
    max-width: 240px;
    margin: 0 auto;
  }

    .download-app-phone-wrap img,
    .download-app-phone-placeholder {
      margin-top: -40px;
      margin-bottom: -40px;
    }

  .download-app-phone-placeholder {
    width: 200px;
    height: 400px;
  }

  .download-app-content {
    text-align: center;
  }

  .download-app-title {
    font-size: 1.75rem;
  }

  .download-app-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .download-app-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .download-app-btn {
    width: 100%;
  }
}