.story {
  min-height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  gap: 100px;
}

.specs {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 46px;
}

.specs h3 {
    font-family: 'Audiowide';
    color: var(--minor-text-color);
    font-size: 2rem;
}

.specs .highlight {
    color: var(--secondary-color);
}

.quick-feat {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.items {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.num {
    width: 64px;
    height: 64px;
    font-family: 'Silkscreen';
    font-size: 2rem;
    color: var(--secondary-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(184, 184, 184, 0.17);
    border: 1px solid var(--secondary-text-color);
    border-radius: 5px;
}

.num.red{
    color: var(--primary-color);
    background-color: rgba(120, 20, 30, 0.17);
    border: 1px solid var(--primary-color);
}

.details {
    display: flex;
    flex-direction: column;
    gap: 5;
}

.details h3 {
    font-family: 'Audiowide';
    font-size: 1.5rem;
    color: var(--minor-text-color);
}

.details p {
    font-family: 'Roboto Mono';
    font-size: 1rem;
    color: var(--secondary-text-color);
}

.job-track {
    width: 500px;
    height: 550px;
    border-radius: 10px;
    border: 1px solid var(--accent-color)
}

.job-track .header {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 25px;
    gap: 10px;
    border-bottom: 1px solid var(--accent-color);
}

.job-description {
    display: flex;
    flex-direction: column;
}

.job-description h3 {
    font-family: 'Audiowide';
    font-size: 1.5rem;
    color: var(--minor-text-color);
}

.job-description p {
    font-family: 'Roboto Mono';
    font-size: 0.9rem;
    color: var(--secondary-text-color);
}

.header .status {
    font-family: 'Silkscreen';
    font-size: 0.75rem;
    color: var(--secondary-text-color);
    border: 1px solid var(--secondary-color);
    background-color: rgba(250, 194, 99, 0.17);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 4px;
}

.track {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.track-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    padding-bottom: 32px;
}

.track-item::before {
    content: '';
    position: absolute;
    left: 17.5px;
    top: 36px;
    width: 2px;
    height: calc(100% - 36px);
    background-color: var(--accent-color);
}

.track-item:last-child::before {
    display: none;
}

.track-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: rgba(184, 184, 184, 0.2);
    border: 2px solid var(--secondary-text-color);
}

.track-item.completed .track-icon {
    background-color: rgba(76, 175, 80, 0.2);
    border-color: var(--green-accent);
}

.track-item.active .track-icon {
    background-color: rgba(79, 158, 248, 0.2);
    border-color: var(--blue-accent);
}

.track-icon svg {
    width: 18px;
    height: 18px;
    color: var(--green-accent);
}

.track-icon .number {
    font-family: 'Silkscreen';
    font-size: 0.9rem;
    color: var(--secondary-text-color);
}

.track-item.active .track-icon .number {
    color: var(--blue-accent);
}

.track-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.track-content h4 {
    font-family: 'Audiowide';
    font-size: 1rem;
    color: var(--minor-text-color);
    margin: 0;
}

.track-content p {
    font-family: 'Roboto Mono';
    font-size: 0.85rem;
    color: var(--secondary-text-color);
    margin: 0;
}




@media (max-width: 1024px) {
    .story {
        gap: 60px;
        padding: 1.5rem;
    }

    .specs h3 {
        font-size: 1.75rem;
    }

    .specs {
        gap: 36px;
    }

    .quick-feat {
        gap: 36px;
    }

    .num {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .details h3 {
        font-size: 1.3rem;
    }

    .details p {
        font-size: 0.9rem;
    }

    .job-track {
        width: 450px;
        height: auto;
        min-height: 500px;
    }

    .job-description h3 {
        font-size: 1.3rem;
    }

    .track {
        padding: 25px;
    }
}


@media (max-width: 768px) {
    .story {
        flex-direction: column;
        gap: 50px;
        padding: 1.5rem;
    }

    .specs {
        width: 100%;
        max-width: 600px;
        gap: 30px;
    }

    .specs h3 {
        font-size: 1.5rem;
    }

    .quick-feat {
        gap: 30px;
    }

    .num {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .details h3 {
        font-size: 1.2rem;
    }

    .details p {
        font-size: 0.85rem;
    }

    .job-track {
        width: 100%;
        max-width: 600px;
        height: auto;
        min-height: auto;
    }

    .job-track .header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header .status {
        align-self: flex-start;
    }

    .track {
        padding: 20px;
    }

    .track-item {
        padding-bottom: 28px;
    }
}


@media (max-width: 480px) {
    .story {
        gap: 40px;
        padding: 1rem;
    }

    .specs {
        gap: 25px;
    }

    .specs h3 {
        font-size: 1.3rem;
    }

    .quick-feat {
        gap: 25px;
    }

    .items {
        gap: 20px;
    }

    .num {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .details h3 {
        font-size: 1.1rem;
    }

    .details p {
        font-size: 0.8rem;
    }

    .job-track {
        width: 100%;
        max-width: 100%;
    }

    .job-track .header {
        padding: 15px;
        gap: 12px;
    }

    .job-description h3 {
        font-size: 1.2rem;
    }

    .job-description p {
        font-size: 0.8rem;
    }

    .header .status {
        font-size: 0.7rem;
        padding: 4px 15px;
    }

    .track {
        padding: 15px;
    }

    .track-item {
        gap: 15px;
        padding-bottom: 24px;
    }

    .track-icon {
        width: 32px;
        height: 32px;
    }

    .track-item::before {
        left: 15.5px;
        top: 32px;
        height: calc(100% - 32px);
    }

    .track-icon svg {
        width: 16px;
        height: 16px;
    }

    .track-icon .number {
        font-size: 0.8rem;
    }

    .track-content h4 {
        font-size: 0.95rem;
    }

    .track-content p {
        font-size: 0.8rem;
    }
}

