.arm-authorities {
    width: 100%;
}

.arm-card {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.arm-card-photo {
    flex: 0 0 130px;
    width: 130px;
    height: 130px;
    margin-right: 20px;
}

.arm-card-photo img {
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
}

.arm-card-details {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.arm-card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.arm-card-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.arm-card-info {
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .arm-card {
        align-items: flex-start;
        padding: 16px;
    }

    .arm-card-photo {
        flex-basis: 96px;
        width: 96px;
        height: 96px;
        margin-right: 14px;
    }

    .arm-card-photo img {
        width: 96px;
        height: 96px;
    }

    .arm-card-title {
        font-size: 18px;
    }
}
