.creator-card-horizontal {
    display: flex;
    gap: 16px;
    border-radius: 16px;
    /*box-shadow: 0 8px 24px rgba(0,0,0,0.08);*/
    overflow: hidden;
    transition: 0.3s;
}

.creator-card-horizontal:hover {
    transform: translateY(-4px);
}

/* IMAGE */
.creator-image {
    width: 30%;
    min-width: 0;
    aspect-ratio: 223 / 295;
    align-self: flex-start;
    border-radius: 16px;
    overflow: hidden;
}

.creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.creator-content {
    width: 70%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /*background: #f2f2f2;*/
    height: fit-content;
    overflow: hidden;
    border-radius: 16px;
}

/* NAME */
h3.creator-name {
    margin-block-end: 0px;
}

.creator-name a {
    text-decoration: none;
    /*color: #111;*/
    color: var(--theme-palette-color-1);
}

.creator-name a:hover {
    color: #6a11cb;
}

/* STATS */
.creator-stats {
    display: flex;
    gap: 32px;
    background: #ffebe9;
    border: solid 1px #f17267;
    padding: 12px 16px;
    border-radius: 4px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .label {
    font-size: 12px;
    color: #777;
}

.stat .value {
    font-weight: 600;
}

/* ACCORDION */
.creator-accordion {
    background: #ededed;
    padding: 16px;
    border-radius: 4px;
}

.accordion-toggle {
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}