/* Achievement Page Styles - Modern Flat Design */

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 30px 0;
}

.achievement-item {
    background: #fff;
    padding: 25px;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #d1d9e6;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #000060;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-item:hover::before {
    opacity: 1;
}

.achievement-item .system-name {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #000060 !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
}

.achievement-item .customer {
    font-size: 0.95rem !important;
    color: #4a5568 !important;
    margin-bottom: 12px !important;
    font-weight: 600 !important;
    margin-left: 0 !important; /* Resetting old margin */
}

.achievement-item .achievement-date {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.achievement-item .achievement-date i {
    margin-right: 6px;
    color: #a0aec0;
}

.achievement-item .achievement-desc {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    border-top: 1px solid #f7fafc;
    padding-top: 15px;
}

.achievement-item .tech-stack {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2b6cb0;
    padding-top: 12px;
    border-top: 1px dashed #edf2f7;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Optional: If I want to make tech items look like badges later */
.tech-tag {
    background: #ebf8ff;
    color: #2c5282;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }
}
