#about {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 6rem;
}

#about-col-1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#about-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(auto-fit, auto);
    gap: 1rem;
    border: 1px solid var(--border-light);
    border-radius: .5rem;
    padding: 2rem;
    gap: 2rem;
    align-items: start;
}

#col-2-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    grid-column: 1/-1;
    grid-row: 1/2;
}

#article-title{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}

#rep-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color-secondary);
}

#col-2-image {
  grid-column: 1/2;
  grid-row: 2/6;
}

#about-col-2 p:nth-of-type(1) {
    grid-column: 2/3;
    grid-row: 2/3;
}

#about-col-2 p:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 3/4;
}

#about-col-2 p:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 4/5;
}

#about-col-2 button {
    grid-column: 2/3;
    grid-row: 5/6;
    
}

#col-2-image {
    align-self: stretch;
}

#col-2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}

#col-2-bio {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Featured Equipment Section */
#featured-section {
    gap: 3rem;
}

#featured-section .section-header {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

#featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

#featured-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

/* //////////////////////////////// */


.card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--border-light);
  border-radius: .5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  gap: 0;
  overflow: hidden;
  transition: box-shadow .12s ease;
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title {
  font-weight: 700;
  font-size: 1.25rem;
}

.card .title {
  font-family: 'Inter', sans-serif;
}

.category {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--box-color-light);
  height: fit-content;
  padding: .25rem .5rem;
  margin-left: .5rem;
  border-radius: .375rem;
  font-size: 0.8rem;
}

.desc {
  flex: 1;
  color: var(--text-color-secondary);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.price {
  font-weight: 600;
}
.card button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  width: 5rem;
  font-weight: 500;
  padding: 0.25rem;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(233, 193, 12, 0.219)
}

.thumb {
  aspect-ratio: 4/3;
  background: #0c0f14;
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .thumb {
  transform: scale(1.05);
}

/* --------------------MISSION BAR---------------------- */

#mission {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: var(--box-color-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);

}

#mission div {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 24rem;
}

#mission h3 {
  font-family: "Bebas Neue", sans-serif;
}

/* ------------------------TMG-------------------------- */

#tmg {
  background-color: rgb(17, 17, 17);
  color: white;
  gap: 4rem;
}

#tmg .p1,
#tmg .p2 {
  color: var(--text-color-muted);
}

#tmg h3,
#tmg h4 {
  font-family: "Bebas Neue", sans-serif;
  color: var(--tmg);
}

#tmg h4 {
  letter-spacing: .2ch;
}

#tmg .section-header {
  gap: 2rem;
}

.tmg-header {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.tmg-header h5 {
  font-family: 'Bebas Neue', sans-serif;
}

.tmg-header img {
  height: 3rem;
}

#tmg .section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.tmg-col-1,
.tmg-col-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tmg-col-2 {
  background-color: rgba(255, 103, 27, 0.075);
  border: 1px solid var(--tmg);
  border-radius: .5rem;
  padding: 2rem;
  height: fit-content;
}

#tmg ul {
  display: flex;
  flex-direction: column;
  color: var(--text-color-muted);
  list-style-type: none;
  gap: 1rem;
}

#tmg ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tmg-btn-wrapper span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}