/* Accent color for each milestone */
.accent-2013 { --accent-color: #41516C; }
.accent-2014 { --accent-color: #FBCA3E; }
.accent-2015 { --accent-color: #E24A68; }
.accent-2016 { --accent-color: #1B5F8C; }
.accent-2017 { --accent-color: #4CADAD; }
.accent-2018 { --accent-color: #D98880; }
.accent-2019 { --accent-color: #76D7C4; }
.accent-2023a { --accent-color: #A569BD; }
.accent-2023b { --accent-color: #F39C12; }

/* General milestone item */
.milestone-item {
    position: relative;
    padding: 20px;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

/* Optional custom year link */
.thinkhr-year-link {
    color: white;
    text-decoration: none;
}

/* Logo image class */
.thinkhr-logo {
    max-width: 100px;
}

/* Optional enhancements */
.milestone-item .date {
    font-weight: bold;
    font-size: 20px;
}

.milestone-item .title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}

.milestone-item .descr {
    font-size: 15px;
    color: #333;
    margin-top: 5px;
}
.custom-fa-stack {
    font-size: 0.6em;
}

.team-detail-card.hidden {
    display: none;
}



/* Certificate Card */
.certificate-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover effect */
.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Certificate Image */
.certificate-img {
    max-height: 260px;
    object-fit: contain;
}

/* Caption */
.certificate-caption {
    font-weight: 500;
    color: #444;
    margin-bottom: 0;
}

/* Mobile tuning */
@media (max-width: 576px) {
    .certificate-img {
        max-height: 220px;
    }
}
