/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.ae-notice {
    position: relative;
    padding: 1em;
    margin-bottom: 1em;
    border: 1px solid;
    border-radius: 4px;
}

.ae-notice-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.ae-notice-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.ae-notice-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.ae-notice-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.ae-notice .ae-notice-dismiss {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    font-size: 1.2em;
    color: inherit;
    text-decoration: none;
}

.ae-notice .ae-notice-dismiss:hover {
    color: #000;
}

.ae-notice .ae-notice-dismiss:before {
    content: '\00d7';
}

.ae-notice .ae-button {
    display: inline-block;
    padding: 0.5em 1em;
    margin: 0 0.5em;
    border: 1px solid;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
}

.ae-notice .ae-button-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.ae-notice .ae-button-primary:hover {
    color: #fff;
    background-color: #0056b3;
    border-color: #004e9a;
}


/* Expert cards */

.experts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    grid-gap: 1em;
    margin: 1em 0;
}

.expert-card {
    padding: 1.5em 3em;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.expert-card .expert-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

.expert-card .expert-card__header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 1em;
}

.expert-card .expert-card__header h4 {
    margin: 0;
}

.expert-card .expert-card__header .expert-card__header__content {
    flex: 1;
}

.expert-card .expert-card__content {
    margin-bottom: 1em;
}

/* Expertises badges */
/* selector span.value-item {
    visibility: visible;
    background-color: #e3ecf5;
    color: black;
    opacity: 1;
    padding: 4px 8px;
    text-align: center;
    border-radius: 5px;
    margin-top: 2px;
  }
  
  selector .value {
    visibility: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  } */

.expertises {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 90px;
    overflow: hidden;
}

.expertises.expanded {
    max-height: none !important;
    overflow: visible !important;
}

.toggle-expertises {
    cursor: pointer;
    color: #007bff;
}

.expertise {
    background-color: #e3ecf5;
    color: black;
    padding: 4px 8px;
    text-align: center;
    border-radius: 5px;
}