/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .article-title { margin-bottom: 15px; }

.about-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

.about-text p { margin-bottom: 15px; }

.stack-section { margin-bottom: 40px; }

.service-title { margin-bottom: 20px; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-item {
  color: var(--white-2);
  font-size: var(--fs-7);
  font-weight: var(--fw-400);
  padding: 8px 12px;
  border: 1px solid var(--jet);
  border-radius: 999px;
  background: var(--onyx);
}



/*-----------------------------------*\
  #PRINT BUTTON
\*-----------------------------------*/

.print-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  color: var(--light-gray);
  font-size: var(--fs-6);
  border: 1px solid var(--jet);
  border-radius: 8px;
  background: var(--onyx);
  cursor: pointer;
  transition: color var(--transition-1), border-color var(--transition-1);
  flex-shrink: 0;
  line-height: 1;
}

.print-btn:hover,
.print-btn:focus {
  color: var(--orange-yellow-crayola);
  border-color: var(--orange-yellow-crayola);
}

.post-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}



/*-----------------------------------*\
  #RESUME
\*-----------------------------------*/

.article-title { margin-bottom: 30px; }


/**
 * education and experience 
 */

.timeline { margin-bottom: 30px; }

.timeline .title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.timeline-list {
  font-size: var(--fs-6);
  margin-left: 45px;
}

.timeline-item { position: relative; }

.timeline-item:not(:last-child) { margin-bottom: 20px; }

.timeline-item-title {
  font-size: var(--fs-6);
  line-height: 1.3;
  margin-bottom: 7px;
}

.timeline-list span {
  color: var(--vegas-gold);
  font-weight: var(--fw-400);
  line-height: 1.6;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -30px;
  width: 1px;
  height: calc(100% + 50px);
  background: var(--jet);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -33px;
  height: 6px;
  width: 6px;
  background: var(--text-gradient-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--jet);
}

.timeline-text {
  color: var(--light-gray);
  font-weight: var(--fw-300);
  line-height: 1.6;
}


/**
 * skills 
 */

.skills-title { margin-bottom: 20px; }

.skills-list { padding: 20px; }

.info-list {
  display: grid;
  gap: 14px;
}

.info-list li,
.section-copy {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

.info-list strong {
  color: var(--white-2);
  font-weight: var(--fw-500);
}

.hobbies-copy { margin-bottom: 16px; }

.hobby-tags { margin-top: 0; }





/*-----------------------------------*\
  #TECH NEWS
\*-----------------------------------*/

.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.news-item > a {
  background: var(--border-gradient-onyx);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-4);
}

.news-item > a::before { background: var(--eerie-black-1); }

.news-title {
  color: var(--white-2);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: var(--transition-1);
}

.news-item > a:hover .news-title { color: var(--orange-yellow-crayola); }

.news-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.news-meta > span {
  color: var(--light-gray-70);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-source {
  color: var(--vegas-gold) !important;
  font-weight: var(--fw-400) !important;
}

.loading-message,
.error-message {
  color: var(--light-gray);
  font-size: var(--fs-6);
  text-align: center;
  padding: 20px;
}
