/* Cards génériques */
.expertise-card,
.experience-card,
.tech-tools-card,
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card,
.contact-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.expertise-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.experience-card,
.tech-tools-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Images */

.expertise-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
}

.experience-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
}


.tech-tools-image {
    width: 200px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
}

.contact-image {
    width: 200px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Liens d'images */
.experience-image-link{
    display: block;
    border-radius: 8px;
    align-self: center;
}

.experience-image-link {
    width: 100px;
    height: 100px;
}




.experience-image-link:hover {
    transform: scale(1.05);
}

/* Contenus */
.expertise-content {
    flex: 1;
}

.expertise-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* Listes */
.expertise-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
    list-style: none;
}

.expertise-list li {
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

.expertise-list li::before {
    content: "•";
    color: var(--primary-blue);
    font-size: 1.2em;
    position: absolute;
    left: -1.2rem;
    top: -0.2em;
}

/* Icône info */
.info-icon img {
    width: 18px;
    height: 18px;
    opacity: 1;
}