.insta-module {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: #fafafa; /* fond clair type Instagram */
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    max-width: 400px;      /* largeur maximale */
    width: 90%;            /* largeur responsive */
    margin: 30px auto;     /* centre horizontalement */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
}

.insta-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;    /* photo ronde */
    object-fit: cover;
    flex-shrink: 0;        /* ne se réduit pas si le bloc est petit */
}

.insta-info {
    display: flex;
    flex-direction: column;
}

.insta-name {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #333;
}

.insta-btn {
    display: inline-block;
    padding: 6px 12px;
    background: #d98221;
	font-family: 'Proxima Nova', 'Roboto', 'Arial', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.insta-btn:hover {
    background: #535353;
	color: #fff;
}

.insta-icon {
    margin-left: auto;      /* pousse l’icône complètement à droite */
    font-size: 3rem;      /* taille de l’icône */
    color: #D9A66D;
    flex-shrink: 0;
}

/* Responsive pour mobile */
@media (max-width: 600px) {
    .insta-module {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 90%;
    }

    .insta-icon {
        margin-left: 0;
        margin-top: 10px;
        font-size: 2rem;
    }
}
