/* ==========================================
   ACHIEVEMENT SECTION (Inside Scrollable Area)
   ========================================== */
.achievement-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.achievement-content {
    max-width: 100%;
}

.achievement-title {
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.achievement-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #9A9A9A;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.achievement-project {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.achievement-description {
    font-size: 16px;
    font-weight: 400;
    color: #9A9A9A;
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 680px;
}

/* Achievement Link Items */
.achievement-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achievement-link-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #1A1A1A;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.achievement-link-item:hover {
    background: #1F1F1F;
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateX(4px);
}

.link-icon {
    width: 44px;
    height: 44px;
    background: #252525;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-icon svg {
    color: #F97316;
}

.link-content {
    flex: 1;
}

.link-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.link-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #9A9A9A;
    margin: 0;
    line-height: 1.4;
}

.link-arrow {
    flex-shrink: 0;
}

.link-arrow svg {
    color: #F97316;
    transition: transform 0.3s ease;
}

.achievement-link-item:hover .link-arrow svg {
    transform: translate(3px, -3px);
}

/* ==========================================
   RESPONSIVE DESIGN - ACHIEVEMENT SECTION
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .achievement-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .achievement-title {
        font-size: 26px;
    }

    .achievement-subtitle {
        font-size: 15px;
    }

    .achievement-project {
        font-size: 17px;
    }

    .achievement-description {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .achievement-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .achievement-section .section-title {
        text-align: center;
    }

    .achievement-title {
        font-size: 24px;
    }

    .achievement-project {
        font-size: 16px;
    }

    .achievement-description {
        font-size: 15px;
    }

    .achievement-links {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    /* Additional mobile styles if needed */
}
