/*
 * SPDX-FileCopyrightText: 2026 Arnold Bagabaldo
 * SPDX-License-Identifier: LicenseRef-GoOffice-Proprietary
 */

.partner-resource-body {
  min-height: 100vh;
  background: #eef6fa;
}

.partner-resource-main {
  min-height: calc(100vh - 230px);
  padding: clamp(3rem, 8vw, 7rem) clamp(1.1rem, 7vw, 6.5rem);
}

.partner-resource-gate {
  width: min(100%, 72rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid #cad9e4;
  background: #fff;
  box-shadow: 0 28px 70px rgba(5, 39, 61, 0.12);
}

.partner-resource-gate h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.partner-resource-gate > div > p:last-child {
  max-width: 44rem;
  color: #516274;
  font-size: 1.08rem;
  line-height: 1.6;
}

.partner-resource-gate form {
  align-self: center;
  padding: 1.5rem;
  background: #072a45;
  color: #fff;
}

.partner-resource-gate label {
  display: grid;
  gap: 0.6rem;
  font-weight: 800;
}

.partner-resource-gate input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #9cb4c4;
  border-radius: 4px;
  font: inherit;
  text-transform: uppercase;
}

.partner-resource-gate button {
  width: 100%;
  margin-top: 1rem;
}

.partner-resource-status {
  min-height: 1.4rem;
  margin: 0.85rem 0 0;
  color: #c9dce8;
  line-height: 1.45;
}

.partner-resource-status.is-error {
  color: #ffd3cc;
}

.partner-resource-library {
  width: min(100%, 82rem);
  margin: 0 auto;
}

.partner-resource-files {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.partner-resource-file {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid #cad9e4;
  background: #fff;
}

.partner-resource-file > span {
  display: grid;
  place-items: center;
  min-height: 3rem;
  color: #fff;
  background: #0678b8;
  font-size: 0.78rem;
  font-weight: 900;
}

.partner-resource-file strong,
.partner-resource-file small {
  display: block;
}

.partner-resource-file p {
  margin: 0.35rem 0;
  color: #516274;
  line-height: 1.45;
}

.partner-resource-file a {
  color: #0678b8;
  font-weight: 850;
}

@media (max-width: 800px) {
  .partner-resource-gate,
  .partner-resource-files {
    grid-template-columns: 1fr;
  }

  .partner-resource-file {
    grid-template-columns: 3.5rem 1fr;
  }

  .partner-resource-file a {
    grid-column: 2;
  }
}
