/* Styles/Resume.css — terminal resume layout (stable alignment) */

.terminal-page{
  padding: 24px 18px;
  display: flex;
  justify-content: center;
}


.terminal-block{
  font-family: 'VT323', monospace;
  font-size: 22px;
  line-height: 1.25;
  max-width: 980px;      /* keeps it looking like a terminal page */
}

/* title */
.term-name{
  margin-top: 6px;
  margin-bottom: 8px;
  font-size: 26px;
  letter-spacing: 1px;
}

.term-section{
  margin-top: 18px;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.term-entry{
  margin-bottom: 14px;
}

/* Two-column alignment that DOESN'T break */
.term-row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
}

.term-right{
  justify-self: end;
  white-space: nowrap;
}

/* Job header: 3 columns (org | title | location) */
.term-jobhead{
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 4px;
}

.term-strong{
  letter-spacing: 1px;
  text-transform: uppercase;
}

.term-gap{
  height: 10px;
}

/* Terminal bullets */
.term-list{
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
}

.term-list li{
  margin: 2px 0;
  padding-left: 18px;
  position: relative;
}

.term-list li::before{
  content: "-";
  position: absolute;
  left: 0;
}

/* Keep links terminal-like */
.terminal-block a{
  text-decoration: underline;
}

/* Responsive: collapse 3-column job header cleanly */
@media (max-width: 760px){
  .term-jobhead{
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .term-right{
    justify-self: start;
  }
}
