.xperia-staff-augmentation-timeline {
    position: relative;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 12px 0;
    font-family: Inter, Arial, sans-serif;
}

.xperia-staff-augmentation-line {
    position: absolute;
    left: 27px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(46, 244, 172, 0.6) 0%,
        rgba(46, 244, 172, 0.2) 50%,
        rgba(46, 244, 172, 0) 100%
    );
}

.xperia-staff-augmentation-item {
    position: relative;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.xperia-staff-augmentation-item:last-child {
    margin-bottom: 0;
}

.xperia-staff-augmentation-icon {
    position: relative;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    margin-top: 6px;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 30px 80px -30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.xperia-staff-augmentation-icon img {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 18px;
    top: 18px;
    object-fit: contain;
    display: block;
}

.xperia-staff-augmentation-icon span {
    position: absolute;
    right: -6px;
    bottom: -5px;
    min-width: 21px;
    height: 21px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #0A0A0A;
    border: 1px solid rgba(94, 218, 206, 0.4);
    color: #5EDACE;
    font-size: 10px;
    line-height: 15px;
    font-family: Menlo, monospace;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xperia-staff-augmentation-card {
    width: 100%;
    min-height: 109px;
    height: auto;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
    overflow: visible;
}

.xperia-staff-augmentation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.xperia-staff-augmentation-header h3 {
    margin: 0;
    color: #F5FAF8;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: -0.36px;
}

.xperia-staff-augmentation-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.xperia-staff-augmentation-day {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(94, 218, 206, 0.1);
    border: 1px solid rgba(94, 218, 206, 0.3);
    color: #5EDACE;
    font-size: 12px;
    line-height: 16px;
}

.xperia-staff-augmentation-sla {
    color: #97A9A6;
    font-size: 12px;
    line-height: 16px;
}

.xperia-staff-augmentation-card p {
    margin: 0;
    color: #AAAAAA;
    font-size: 14px;
    line-height: 23px;
}

@media (max-width: 767px) {
    .xperia-staff-augmentation-item {
        gap: 16px;
    }

    .xperia-staff-augmentation-card {
        padding: 20px;
    }

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