﻿.gearCreatorPageWrap h2 {
  text-align: left;
  font-size: 1.3rem;
}

/* Header Section */

.headerSection {
  padding-bottom: 30px;
}

.headerSection .topContent {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.headerSection .topContent h1 {
  font-size: 1.5rem;
  text-align: left;
  line-height: 1;
  margin: 0;
  text-transform: initial;
  margin-bottom: 10px;
}

  .headerSection .topContent img {
    border-radius: 50px;
    border: 2px solid #a8a6a6;
  }

.headerSection .btnRed {
  padding: 0px 5px;
  font-size: 0.75rem;
}

.headerSection .subHeader {
  margin-bottom: 10px;
}

.headerSection .subHeader span,
.headerSection .subHeader a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.headerSection .subHeader a:hover {
  color: rgba(255,255,255,1);
  text-decoration: underline;
}

/* Gear List */

.gearListWrap .itemList {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

  .gearListWrap .itemList a {
    background: rgba(255, 255, 255, .03);
    border: 0.5px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    transition: border-color .2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

    .gearListWrap .itemList a:hover {
      border-color: rgba(232, 84, 10, .4);
    }

.gearListWrap .category {
  font-size: 0.7rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: rgba(232, 84, 10, .7);
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1;
}

.gearListWrap .name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.gearListWrap .brand {
  line-height: 1;
  font-size: 0.7rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: rgba(255, 255, 255, .35);
}

.pc-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}

  .pc-specs-table td {
    padding: 15px 0;
    font-size: 0.85rem;
    border-top: 0.5px solid rgba(255, 255, 255, .06);
  }

    .pc-specs-table td:first-child {
      color: rgba(255, 255, 255, .5);
      width: 160px;
    }

    .pc-specs-table td:last-child {
      color: rgba(255, 255, 255, .85);
      font-weight: 500;
    }

.disclaimer {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}