.productboard-page {
  padding-bottom: 48px;
    width: 100vw;
}

.productboard-page__hero {
  margin: 0 0 24px;
  padding: 28px 80px;

  background: linear-gradient(135deg, #0c3c84 0%, #1f73b7 100%);
  color: #fff;

}

.productboard-page__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
}

.productboard-page__subtitle {
  margin: 10px 0 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.productboard-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 308px));
  gap: 24px;
  justify-content: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  box-sizing: border-box;
}

.productboard-hub__tile {
  width: 100%;
  max-width: 308px;
  height: 312px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  aspect-ratio: 1 / 1;
  min-height: 180px;
  padding: 20px 16px;
  border-radius: 14px;
  border: 1px solid #d8e2ec;
  background: #fff;
  box-shadow: 0 5px 18px rgba(21, 44, 74, 0.1);
  color: #12334f;
  text-align: left;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  gap: 12px;
}

.productboard-hub__tile:hover,
.productboard-hub__tile:focus {
  transform: translateY(-2px);
  border-color: #1f73b7;
  box-shadow: 0 10px 24px rgba(21, 44, 74, 0.16);
  text-decoration: none;
  color: #0c3c84;
}

.productboard-hub__tile-label {
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  color: black;
}

.productboard-hub__tile-description {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #425466;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.productboard-hub-view__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 20px;
  margin-top: 12px;
}

.productboard-hub-view__back {
  font-size: 14px;
  font-weight: 600;
  color: #1f73b7;
  text-decoration: none;
}

.productboard-hub-view__back:hover,
.productboard-hub-view__back:focus {
  text-decoration: underline;
}

.productboard-hub-view__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: #12334f;
  margin-bottom: 10px;
}

.productboard-hub-view .myarcher-productboard {
  margin-top: 0;
}

.productboard-hub-view .myarcher-productboard__iframe-container {
  min-height: calc(100vh - 280px);
}

.productboard-hub-view .myarcher-productboard__iframe-container iframe {
  height: calc(100vh - 280px);
  min-height: 600px;
}

@media (max-width: 767px) {
  .productboard-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 24px;
  }

  .productboard-hub__tile {
    max-width: none;
    min-height: 140px;
    padding: 16px 12px;
  }

  .productboard-hub__tile-label {
    font-size: 14px;
  }

  .productboard-hub-view .myarcher-productboard__iframe-container,
  .productboard-hub-view .myarcher-productboard__iframe-container iframe {
    min-height: 500px;
    height: 500px;
  }
}
