:root {
  --navy: #071927;
  --navy-2: #0b293f;
  --ink: #102535;
  --muted: #667985;
  --blue: #0c659f;
  --orange: #f5a12b;
  --paper: #f2f5f7;
  --white: #fff;
  --line: #d9e2e7;
  --green: #1c7654;
  --red: #a83c3c;
  --font: Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 3000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  clip: auto;
}

.admin-body {
  min-height: 100vh;
  background: var(--paper);
}

.admin-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 252px 1fr;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  color: #c0d0db;
  background: var(--navy);
}

.admin-sidebar__brand {
  padding: 27px 25px 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.admin-sidebar__brand img {
  width: 178px;
  padding: 8px;
  background: var(--white);
  border-radius: 7px;
}

.admin-sidebar__brand > span {
  display: block;
  margin-top: 12px;
  color: #718b9c;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-nav {
  display: grid;
  gap: 5px;
  padding: 22px 13px;
}

.admin-nav a {
  display: grid;
  min-height: 48px;
  grid-template-columns: 31px 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 720;
}

.admin-nav a:hover,
.admin-nav a.is-active {
  color: var(--white);
  background: #102f47;
}

.admin-nav a > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #82c8ef;
  background: rgba(22, 133, 200, 0.12);
  border-radius: 7px;
  font-size: 0.62rem;
  font-weight: 900;
}

.admin-sidebar__footer {
  margin-top: auto;
  padding: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.admin-user {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
}

.admin-user > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.admin-user strong,
.admin-user small {
  display: block;
}

.admin-user strong {
  color: var(--white);
  font-size: 0.78rem;
}

.admin-user small {
  color: #748d9e;
  font-size: 0.64rem;
}

.admin-sidebar__footer form {
  margin-top: 13px;
}

.admin-sidebar__footer button {
  width: 100%;
  padding: 9px;
  color: #91a7b5;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 0.72rem;
}

.admin-main {
  min-width: 0;
}

.admin-topbar {
  position: sticky;
  z-index: 500;
  top: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 34px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.admin-topbar small,
.admin-topbar strong {
  display: block;
}

.admin-topbar small {
  color: #84939e;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-topbar strong {
  margin-top: 2px;
  font-size: 0.9rem;
}

.admin-topbar__site {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.admin-menu-toggle {
  display: none;
}

.admin-content {
  width: min(calc(100% - 60px), 1320px);
  margin: 0 auto;
  padding: 48px 0 70px;
}

.admin-notice,
.admin-warning,
.admin-form-errors {
  margin-bottom: 24px;
  padding: 14px 17px;
  border-radius: 10px;
  font-size: 0.78rem;
}

.admin-notice {
  color: #155c43;
  background: #e2f5ec;
  border: 1px solid #bce2d1;
}

.admin-notice span {
  margin-right: 8px;
}

.admin-warning {
  color: #75500e;
  background: #fff4da;
  border: 1px solid #ecd294;
}

.admin-warning strong {
  margin-right: 5px;
}

.admin-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.admin-page-heading > div:first-child > span {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-page-heading h1 {
  margin: 6px 0 7px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
}

.admin-page-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.admin-back {
  display: block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.admin-button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 800;
}

.admin-button--primary {
  color: var(--white);
  background: var(--blue);
}

.admin-button--primary:hover {
  background: #084f7e;
}

.admin-button--secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.admin-button--danger {
  color: var(--red);
  background: #fff;
  border-color: #e7c5c5;
}

.admin-button--full {
  width: 100%;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.admin-stats article {
  min-height: 140px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.admin-stats article > span,
.admin-stats strong,
.admin-stats small,
.admin-stats a {
  display: block;
}

.admin-stats article > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 780;
}

.admin-stats strong {
  margin: 14px 0 4px;
  font-size: 2.35rem;
  letter-spacing: -0.05em;
}

.admin-stats small,
.admin-stats a {
  color: #87959f;
  font-size: 0.65rem;
}

.admin-stats a {
  color: var(--blue);
  font-weight: 800;
}

.admin-panel,
.editor-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.admin-panel__heading {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 23px;
  border-bottom: 1px solid var(--line);
}

.admin-panel__heading span {
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-panel__heading h2 {
  margin: 2px 0 0;
  font-size: 1.25rem;
}

.admin-panel__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.solution-table-wrap {
  overflow-x: auto;
}

.solution-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.solution-table th {
  padding: 12px 20px;
  color: #81909a;
  background: #f8fafb;
  border-bottom: 1px solid var(--line);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.solution-table tbody tr:last-child td {
  border-bottom: 0;
}

.order-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.order-controls form {
  margin: 0;
}

.order-controls button {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--blue);
  background: var(--paper);
  border: 0;
  border-radius: 6px;
  font-size: 0.68rem;
}

.order-controls button:disabled {
  cursor: default;
  opacity: 0.28;
}

.order-controls > span {
  min-width: 22px;
  text-align: center;
  color: #788994;
  font-size: 0.66rem;
  font-weight: 800;
}

.solution-identity {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 13px;
  align-items: center;
}

.solution-identity > div {
  display: grid;
  width: 60px;
  height: 52px;
  overflow: hidden;
  place-items: center;
  background: var(--paper);
  border-radius: 8px;
}

.solution-identity img {
  width: auto;
  max-width: 88%;
  height: 46px;
  object-fit: contain;
}

.solution-identity strong,
.solution-identity small {
  display: block;
}

.solution-identity strong {
  font-size: 0.78rem;
}

.solution-identity small {
  margin-top: 3px;
  color: #8997a0;
  font-size: 0.62rem;
}

.status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-pill--published {
  color: #176047;
  background: #e2f4ec;
}

.status-pill--published i {
  background: #2b9a70;
}

.status-pill--draft {
  color: #75500e;
  background: #fff3d8;
}

.status-pill--draft i {
  background: #dc9a20;
}

.solution-table time {
  color: #7a8a95;
  font-size: 0.68rem;
}

.row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.row-actions a,
.row-actions button {
  padding: 7px 9px;
  color: var(--blue);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 0.67rem;
  font-weight: 800;
}

.row-actions button {
  color: var(--red);
}

.row-actions a:hover,
.row-actions button:hover {
  background: var(--paper);
}

.editor-actions {
  display: flex;
  gap: 9px;
}

.editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}

.editor-main {
  display: grid;
  gap: 20px;
}

.editor-card {
  padding: 25px;
}

.editor-card__heading {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  margin-bottom: 23px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.editor-card__heading > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  background: #e2f2fa;
  border-radius: 9px;
  font-size: 0.65rem;
  font-weight: 900;
}

.editor-card h2 {
  margin: 0 0 3px;
  font-size: 1.08rem;
}

.editor-card__heading p,
.editor-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}

.admin-form-grid label,
.editor-sidebar label,
.account-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.admin-form-grid label > span,
.editor-sidebar label > span,
.account-form label > span {
  font-size: 0.7rem;
  font-weight: 800;
}

.admin-field--full {
  grid-column: 1 / -1;
}

.admin-form-grid input,
.admin-form-grid textarea,
.editor-sidebar input,
.editor-sidebar textarea,
.account-form input,
.inquiry-card select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid #c9d5dc;
  border-radius: 8px;
  outline: 0;
  font-size: 0.78rem;
}

.admin-form-grid textarea,
.editor-sidebar textarea {
  resize: vertical;
  line-height: 1.55;
}

.admin-form-grid input:focus,
.admin-form-grid textarea:focus,
.editor-sidebar input:focus,
.editor-sidebar textarea:focus,
.account-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 101, 159, 0.1);
}

.admin-form-grid small,
.editor-sidebar small,
.account-form small {
  color: #87949d;
  font-size: 0.62rem;
}

.slug-input {
  display: flex;
  align-items: stretch;
}

.slug-input b {
  display: flex;
  align-items: center;
  padding: 0 11px;
  color: #71828e;
  background: var(--paper);
  border: 1px solid #c9d5dc;
  border-right: 0;
  border-radius: 8px 0 0 8px;
  font-size: 0.7rem;
}

.slug-input input {
  border-radius: 0 8px 8px 0;
}

.editor-card--sticky {
  position: sticky;
  top: 94px;
}

.editor-card--sticky h2 {
  margin-bottom: 15px;
}

.editor-card--sticky hr {
  margin: 25px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.publish-toggle {
  display: grid !important;
  grid-template-columns: 42px 1fr;
  gap: 11px !important;
  align-items: center;
  margin-bottom: 10px;
}

.publish-toggle input {
  position: absolute;
  opacity: 0;
}

.publish-toggle > span {
  position: relative;
  width: 42px;
  height: 24px;
  background: #c6d1d7;
  border-radius: 999px;
  transition: 0.2s ease;
}

.publish-toggle > span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--white);
  border-radius: 50%;
  transition: 0.2s ease;
}

.publish-toggle input:checked + span {
  background: var(--green);
}

.publish-toggle input:checked + span::after {
  transform: translateX(18px);
}

.publish-toggle b {
  font-size: 0.76rem;
}

.image-preview {
  display: grid;
  min-height: 190px;
  margin-bottom: 16px;
  overflow: hidden;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.image-preview img {
  width: auto;
  max-width: 86%;
  height: 175px;
  object-fit: contain;
}

.file-upload {
  margin-bottom: 17px;
}

.file-upload input {
  padding: 8px;
  font-size: 0.68rem;
}

.editor-sidebar .admin-button {
  margin-top: 20px;
}

.admin-form-errors {
  color: #8c3030;
  background: #fff0f0;
  border: 1px solid #e9c5c5;
}

.admin-form-errors ul {
  margin: 6px 0 0;
}

.inquiry-list {
  display: grid;
  gap: 17px;
}

.inquiry-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid #b9c6cd;
  border-radius: 14px;
}

.inquiry-card--new {
  border-left-color: var(--orange);
}

.inquiry-card header,
.inquiry-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.inquiry-person {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.inquiry-person > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.inquiry-person h2 {
  margin: 0;
  font-size: 1rem;
}

.inquiry-person p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.inquiry-status {
  padding: 6px 10px;
  color: #75500e;
  background: #fff3d8;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.inquiry-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 21px 0;
  padding: 16px;
  background: var(--paper);
  border-radius: 9px;
}

.inquiry-meta small,
.inquiry-meta a,
.inquiry-meta span,
.inquiry-meta time {
  display: block;
}

.inquiry-meta small {
  color: #82919b;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-meta a,
.inquiry-meta span,
.inquiry-meta time {
  margin-top: 3px;
  font-size: 0.7rem;
  font-weight: 700;
}

.inquiry-message {
  padding: 0 3px 22px;
  white-space: pre-wrap;
  font-size: 0.8rem;
  line-height: 1.6;
}

.inquiry-card footer {
  justify-content: flex-start;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.inquiry-card footer form {
  display: flex;
  gap: 7px;
}

.inquiry-card select {
  min-width: 105px;
}

.account-panel {
  max-width: 720px;
  padding: 28px;
}

.account-profile {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.account-profile > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--navy);
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
}

.account-profile h2 {
  margin: 0;
}

.account-profile p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.account-form {
  display: grid;
  max-width: 470px;
  gap: 18px;
}

.admin-empty {
  padding: 70px 25px;
  text-align: center;
}

.admin-empty > span {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--blue);
  background: #e2f2fa;
  border-radius: 13px;
  font-size: 0.72rem;
  font-weight: 900;
}

.admin-empty p {
  color: var(--muted);
}

.login-body {
  min-height: 100vh;
  background: var(--paper);
}

.login-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(420px, 0.9fr) 1.1fr;
}

.login-brand-panel {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(38px, 6vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(22, 133, 200, 0.28), transparent 30%),
    var(--navy);
}

.login-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: linear-gradient(to right, #000, transparent);
}

.login-brand-panel > * {
  position: relative;
  z-index: 1;
}

.login-brand-panel > a img {
  width: 205px;
  padding: 10px;
  background: var(--white);
  border-radius: 8px;
}

.login-brand-panel div > span {
  color: #8fd5ff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-brand-panel h1 {
  max-width: 650px;
  margin: 16px 0 22px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.login-brand-panel p {
  max-width: 530px;
  color: #b9ccd8;
}

.login-brand-panel > small {
  color: #708b9c;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.login-form-panel {
  display: grid;
  place-items: center;
  padding: 35px;
}

.login-card {
  width: min(100%, 450px);
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 25px 65px rgba(7, 25, 39, 0.12);
}

.login-card__heading > span {
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-card h2 {
  margin: 8px 0;
  font-size: 2.4rem;
  letter-spacing: -0.045em;
}

.login-card__heading p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.78rem;
}

.login-card label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 17px;
}

.login-card label span {
  font-size: 0.7rem;
  font-weight: 800;
}

.login-card input {
  min-height: 49px;
  padding: 10px 13px;
  border: 1px solid #c8d4db;
  border-radius: 9px;
  outline: 0;
}

.login-card input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 101, 159, 0.1);
}

.login-error {
  margin-bottom: 20px;
  padding: 12px;
  color: #8b3030;
  background: #fff0f0;
  border: 1px solid #e9c5c5;
  border-radius: 8px;
  font-size: 0.72rem;
}

.login-back {
  display: block;
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

:focus-visible {
  outline: 3px solid rgba(12, 101, 159, 0.5);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    z-index: 1000;
    width: 252px;
    visibility: hidden;
    transform: translateX(-100%);
    transition: 0.2s ease;
  }

  .admin-sidebar.is-open {
    visibility: visible;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.25);
    transform: none;
  }

  .admin-menu-toggle {
    display: block;
    width: 42px;
    height: 42px;
    background: var(--paper);
    border: 0;
    border-radius: 9px;
  }

  .admin-menu-toggle span,
  .admin-menu-toggle::before,
  .admin-menu-toggle::after {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    content: "";
    background: var(--ink);
  }

  .admin-topbar {
    justify-content: flex-start;
  }

  .admin-topbar__site {
    margin-left: auto;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .editor-layout {
    grid-template-columns: 1fr;
  }

  .editor-card--sticky {
    position: static;
  }

  .inquiry-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-brand-panel {
    min-height: 430px;
  }
}

@media (max-width: 650px) {
  .admin-content {
    width: min(calc(100% - 28px), 1320px);
    padding-top: 32px;
  }

  .admin-topbar {
    padding: 0 15px;
  }

  .admin-topbar__site {
    display: none;
  }

  .admin-page-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-page-heading > .admin-button,
  .editor-actions .admin-button {
    width: 100%;
  }

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

  .admin-stats,
  .admin-form-grid,
  .inquiry-meta {
    grid-template-columns: 1fr;
  }

  .admin-field--full {
    grid-column: auto;
  }

  .admin-panel__heading {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
  }

  .solution-table {
    min-width: 780px;
  }

  .inquiry-card header,
  .inquiry-card footer {
    align-items: stretch;
    flex-direction: column;
  }

  .inquiry-card footer form {
    width: 100%;
  }

  .inquiry-card footer .admin-button,
  .inquiry-card footer select {
    flex: 1;
  }

  .login-brand-panel {
    min-height: 360px;
    padding: 35px 25px;
  }

  .login-brand-panel h1 {
    font-size: 2.7rem;
  }

  .login-form-panel {
    padding: 20px;
  }

  .login-card {
    padding: 28px 22px;
  }
}
