/* ===== Additional Information: quiet lined sheet v5 =====
   No hover effects. No card/box tiles. Uses simple label/value rows with soft dividers. */
.card .more{
  display:block;
  padding:6px 14px;
  max-height:360px;
  overflow:auto;
  width:100%;
  max-width:100%;
  min-width:0;
  box-sizing:border-box;

  /* Keep this as a single calm information area, not a grid of boxes. */
  border:1px solid rgba(255,255,255,.085);
  border-radius:12px;
  background:linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.010));
  box-shadow:none;
}

/* JS sometimes toggles inline display:block/none. Respect hidden state. */
.card .more[style*="display: block"]{ display:block !important; }
.card .more[style*="display:none"],
.card .more[style*="display: none"]{ display:none !important; }

/* Disable any inherited hover behavior on the Additional Information container. */
.card .more:hover,
.card .more:active{
  border-color:rgba(255,255,255,.085) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.010)) !important;
}

.card .more .kv,
.card .more .kv.ai-wide{
  min-width:0;
  display:grid !important;
  grid-template-columns:minmax(120px, 32%) minmax(0, 1fr) !important;
  gap:14px;
  align-items:start;
  min-height:0;
  padding:11px 0;
  box-sizing:border-box;
  overflow:visible;

  border:0 !important;
  border-bottom:1px solid rgba(255,255,255,.075) !important;
  background:transparent !important;
  box-shadow:none !important;
}

.card .more .kv:last-child{
  border-bottom:0 !important;
}

.card .more .kv::before,
.card .more .kv::after{
  display:none !important;
  content:none !important;
}

.card .more .kv .k,
.card .more .kv .v{
  min-width:0;
  position:static;
  z-index:auto;
}

.card .more .kv .k{
  color:rgba(168,172,179,.88);
  font-size:10px;
  font-weight:820;
  letter-spacing:.075em;
  line-height:1.35;
  text-transform:uppercase;
  overflow-wrap:anywhere;
  padding-top:1px;
}

.card .more .kv .v{
  color:rgba(238,240,246,.96);
  font-size:13.5px;
  font-weight:650;
  line-height:1.42;
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* Remove all hover/active feedback from rows. */
.card .more .kv:hover,
.card .more .kv:active,
.card .more .kv.ai-identity:hover,
.card .more .kv.ai-production:hover,
.card .more .kv.ai-release:hover,
.card .more .kv.ai-status:hover,
.card .more .kv.ai-private:hover,
.card .more .kv.ai-default:hover{
  border-bottom-color:rgba(255,255,255,.075) !important;
  background:transparent !important;
  box-shadow:none !important;
}

/* Previous category classes are intentionally neutral in this layout. */
.card .more .kv.ai-identity,
.card .more .kv.ai-production,
.card .more .kv.ai-release,
.card .more .kv.ai-status,
.card .more .kv.ai-private,
.card .more .kv.ai-default{
  border-color:transparent !important;
  border-bottom-color:rgba(255,255,255,.075) !important;
  background:transparent !important;
}

@media (max-width:780px){
  /* Mobile: turn the sheet into comfortable stacked label/value rows. */
  .card .more,
  .card .more[style*="display: block"]{
    grid-column:1 / -1 !important;
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    margin-top:10px !important;
    padding:3px 10px !important;
    max-height:none !important;
    overflow:visible !important;
    border-color:rgba(255,255,255,.075) !important;
    background:rgba(255,255,255,.012) !important;
    box-shadow:none !important;
    box-sizing:border-box !important;
    contain:none !important;
  }

  .card .more[style*="display:none"],
  .card .more[style*="display: none"]{
    display:none !important;
  }

  .card .more:hover,
  .card .more:active{
    border-color:rgba(255,255,255,.075) !important;
    background:rgba(255,255,255,.012) !important;
  }

  .card .more .kv,
  .card .more .kv.ai-wide{
    grid-template-columns:minmax(0, 1fr) !important;
    gap:4px !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    padding:11px 8px !important;
    overflow:visible !important;
    border:0 !important;
    border-bottom:1px solid rgba(255,255,255,.065) !important;
    background:transparent !important;
    box-shadow:none !important;
    contain:none !important;
    justify-items:center !important;
    text-align:center !important;
  }

  .card .more .kv:last-child{
    border-bottom:0 !important;
  }

  .card .more .kv .k{
    width:100% !important;
    max-width:92% !important;
    font-size:8.5px !important;
    line-height:1.2 !important;
    letter-spacing:.07em !important;
    white-space:normal !important;
    padding-top:0 !important;
    text-align:center !important;
    justify-self:center !important;
  }
  .card .more .kv .v{
    width:100% !important;
    max-width:92% !important;
    font-size:12.5px !important;
    line-height:1.34 !important;
    font-weight:640 !important;
    white-space:normal !important;
    overflow-wrap:anywhere !important;
    word-break:break-word !important;
    text-align:center !important;
    justify-self:center !important;
  }
}

@media (max-width:480px){
  .card .more,
  .card .more[style*="display: block"]{
    width:calc(100% - 4px) !important;
    margin-left:auto !important;
    margin-right:auto !important;
    padding-left:8px !important;
    padding-right:8px !important;
  }

  .card .more .kv .k,
  .card .more .kv .v{
    max-width:96% !important;
  }
}
