.solas-share {
    margin: 22px 0;
    border: 1px solid #dbe3ee;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.solas-share[open] {
    border-color: #bfd4ee;
}

.solas-share__toggle {
    cursor: pointer;
    list-style: none;
    padding: 16px 20px;
    font-weight: 700;
    color: #0f172a;
}

.solas-share__toggle::-webkit-details-marker {
    display: none;
}

.solas-share__toggle::after {
    content: "+";
    float: right;
    color: #1d4ed8;
    font-size: 20px;
    line-height: 1;
}

.solas-share[open] .solas-share__toggle::after {
    content: "\2212";
}

.solas-share__panel {
    padding: 0 20px 20px;
}

.solas-share__label {
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.solas-share__text {
    width: 100%;
    min-height: 92px;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    background: #fff;
    color: #0f172a;
    line-height: 1.5;
    resize: vertical;
    box-sizing: border-box;
}

.solas-share__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.solas-share__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.solas-share__link:hover,
.solas-share__link:focus {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #0f172a;
    transform: translateY(-1px);
}

.solas-share__link[aria-disabled="true"] {
    opacity: 0.6;
    pointer-events: none;
}

.solas-share__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #1d4ed8;
    flex: 0 0 18px;
}

@media (max-width: 640px) {
    .solas-share__link {
        width: calc(50% - 5px);
        justify-content: center;
    }
}

@media (max-width: 440px) {
    .solas-share__link {
        width: 100%;
    }
}
