/* Resume Page Styles */

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

.resume-container {
     display: flex;
     gap: 30px;
     margin-bottom: 30px;
}

.resume-container .timeline {
     flex: 1;
     margin-bottom: 0;
}

.timeline {
     margin-bottom: 30px;
}

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

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

.timeline-item {
     position: relative;
     margin-bottom: 20px;
}

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

.timeline-card {
     position: relative;
     background: var(--eerie-black-2);
     padding: 20px;
     border-radius: var(--radius-md);
     border: 1px solid var(--jet);
     transition: border-color var(--transition-1);
}

.timeline-card:hover {
     border-color: var(--orange-yellow-crayola);
}

.timeline-card.active-card {
     border-left: 3px solid var(--orange-yellow-crayola);
}

.timeline-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 15px;
     margin-bottom: 10px;
     flex-wrap: wrap;
}

.timeline-item-title {
     font-size: var(--fs-5);
     line-height: 1.4;
     margin: 0;
     color: var(--white-2);
     font-weight: var(--fw-500);
}

.timeline-badge {
     display: inline-block;
     padding: 4px 10px;
     background: var(--onyx);
     color: var(--vegas-gold);
     font-size: var(--fs-7);
     font-weight: var(--fw-400);
     border-radius: 4px;
     white-space: nowrap;
}

.timeline-badge.active-badge {
     background: var(--orange-yellow-crayola);
     color: var(--smoky-black);
}

.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: 0;
     left: -30px;
     width: 2px;
     height: calc(100% + 25px);
     background: linear-gradient(to bottom,
               var(--orange-yellow-crayola),
               var(--jet) 50%,
               var(--jet));
     border-radius: 2px;
}

.timeline-item::after {
     content: "";
     position: absolute;
     top: 25px;
     left: -36px;
     height: 10px;
     width: 10px;
     background: var(--orange-yellow-crayola);
     border-radius: 50%;
     box-shadow: 0 0 0 3px var(--eerie-black-2);
     z-index: 2;
}

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

.timeline-text strong {
     color: var(--white-2);
     font-weight: var(--fw-400);
}

.timeline-link {
     display: inline;
     color: var(--orange-yellow-crayola);
}

.timeline-link:hover {
     text-decoration: underline;
}

.timeline-highlights {
     margin: 12px 0 0;
     padding-left: 18px;
     color: var(--light-gray);
}

.timeline-highlights li {
     margin-bottom: 6px;
     line-height: 1.5;
}

.status-ongoing {
     color: var(--orange-yellow-crayola);
     font-weight: var(--fw-500);
}

.status-completed {
     color: var(--vegas-gold);
     font-weight: var(--fw-400);
}

/* Certifications */
.certifications {
     margin-bottom: 30px;
}

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

.certifications-list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 16px;
     list-style: none;
     margin: 0;
     padding: 0;
}

.certification-item {
     display: flex;
     gap: 12px;
     background: var(--eerie-black-2);
     border: 1px solid var(--jet);
     border-radius: var(--radius-md);
     padding: 16px;
     transition: border-color var(--transition-1);
}

.certification-item:hover {
     border-color: var(--orange-yellow-crayola);
}

.certification-icon {
     width: 38px;
     height: 38px;
     border-radius: var(--radius-sm);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     flex-shrink: 0;
}

.certification-gold {
     background: rgba(255, 193, 7, 0.15);
     color: #ffc107;
}

.certification-silver {
     background: rgba(173, 181, 189, 0.15);
     color: #adb5bd;
}

.certification-blue {
     background: rgba(13, 110, 253, 0.15);
     color: #0d6efd;
}

.certification-purple {
     background: hsla(45, 100%, 72%, 0.15);
     color: var(--orange-yellow-crayola);
}

.certification-content {
     min-width: 0;
}

.certification-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 10px;
     margin-bottom: 8px;
}

.certification-title {
     margin: 0;
     font-size: var(--fs-6);
     color: var(--white-2);
}

.certification-date {
     color: var(--vegas-gold);
     font-size: var(--fs-8);
     white-space: nowrap;
}

.certification-meta {
     margin: 4px 0 0;
     color: var(--light-gray);
     font-size: var(--fs-7);
     line-height: 1.4;
}

.certification-meta strong {
     color: var(--white-2);
     font-weight: var(--fw-400);
}

.cert-metrics {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 12px;
     margin-bottom: 16px;
}

.cert-metric {
     background: var(--eerie-black-2);
     border: 1px solid var(--jet);
     border-radius: var(--radius-md);
     padding: 12px;
}

.cert-metric-value {
     color: var(--orange-yellow-crayola);
     font-weight: var(--fw-600);
     font-size: var(--fs-2);
     margin-bottom: 4px;
}

.cert-metric p {
     color: var(--light-gray);
     font-size: var(--fs-7);
     margin: 0;
}

/* Interests */
.interests {
     margin-bottom: 30px;
}

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

.interests-list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 14px;
     list-style: none;
     margin: 0;
     padding: 0;
}

.interest-item {
     background: var(--eerie-black-2);
     border: 1px solid var(--jet);
     border-radius: var(--radius-md);
     padding: 16px;
     transition: border-color var(--transition-1);
}

.interest-item:hover {
     border-color: var(--orange-yellow-crayola);
}

.interest-title {
     font-size: var(--fs-6);
     margin-bottom: 8px;
}

.interest-text {
     color: var(--light-gray);
     font-size: var(--fs-7);
     line-height: 1.5;
}

/* Skills */
.skills-title {
     margin-bottom: 0;
}

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

.skills-list {
     padding: 25px;
     display: flex;
     flex-direction: column;
     gap: 25px;
}

.skills-item {
     position: relative;
     padding: 20px;
     background: var(--eerie-black-2);
     border-radius: var(--radius-md);
     border: 1px solid var(--jet);
     transition: border-color var(--transition-1);
}

.skills-item:hover {
     border-color: var(--orange-yellow-crayola);
}

.skill-header {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 12px;
}

.skill-icon {
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--onyx);
     border-radius: var(--radius-sm);
     color: var(--orange-yellow-crayola);
     font-size: 18px;
     flex-shrink: 0;
}

.skill-ring {
     width: 88px;
     height: 88px;
     position: relative;
     flex-shrink: 0;
}

.skill-ring-svg {
     width: 100%;
     height: 100%;
     transform: rotate(-90deg);
}

.ring-bg,
.ring-progress {
     fill: none;
     stroke-width: 8;
}

.ring-bg {
     stroke: var(--jet);
}

.ring-progress {
     stroke: var(--orange-yellow-crayola);
     stroke-linecap: round;
     stroke-dasharray: 263.89;
     stroke-dashoffset: 263.89;
     transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ring-label {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white-2);
     font-size: var(--fs-7);
     font-weight: var(--fw-600);
}

.skill-info {
     flex: 1;
}

.skill .title-wrapper {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 10px;
     margin-bottom: 8px;
     flex-wrap: wrap;
}

.skill .title-wrapper .h5 {
     margin: 0;
     color: var(--white-2);
     font-weight: var(--fw-500);
     font-size: var(--fs-5);
}

.skill-tech {
     color: var(--light-gray-70);
     font-size: var(--fs-7);
     margin: 0;
     line-height: 1.4;
}

.skill-progress-bg {
     background: var(--jet);
     width: 100%;
     height: 6px;
     border-radius: 3px;
     overflow: hidden;
     position: relative;
}

.skill-progress-fill {
     background: var(--orange-yellow-crayola);
     height: 100%;
     border-radius: inherit;
     position: relative;
     transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive */
@media (max-width: 767px) {
     .resume-container {
          flex-direction: column;
          gap: 20px;
     }

     .timeline-list {
          margin-left: 30px;
     }

     .timeline-item::after {
          left: -36px;
          height: 10px;
          width: 10px;
     }

     .timeline-item:not(:last-child)::before {
          left: -26px;
     }

     .timeline-card {
          padding: 16px;
     }

     .timeline-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 8px;
     }

     .timeline-badge {
          font-size: var(--fs-8);
          padding: 3px 8px;
     }

     .skill-header {
          flex-direction: column;
          gap: 10px;
     }

     .skill-icon {
          width: 32px;
          height: 32px;
          font-size: 16px;
     }

     .skill-ring {
          width: 76px;
          height: 76px;
     }

     .certification-header {
          flex-direction: column;
          align-items: flex-start;
     }
}

@media (min-width: 580px) {
     .timeline-list {
          margin-left: 65px;
     }

     .timeline-item:not(:last-child)::before {
          left: -40px;
     }

     .timeline-item::after {
          height: 14px;
          width: 14px;
          left: -47px;
          top: 30px;
     }

     .timeline-card {
          padding: 22px;
     }

     .skills-item:not(:last-child) {
          margin-bottom: 25px;
     }
}

@media (min-width: 1250px) {
     .timeline-text {
          max-width: 700px;
     }

     .timeline-card {
          padding: 25px;
     }

     .skills-item {
          padding: 22px;
     }

     .skill-header {
          gap: 15px;
     }

     .skill-icon {
          width: 40px;
          height: 40px;
          font-size: 20px;
     }
}
