/* ============================================================
   ISE Blog - Share Box, Newsletter Box & Author Button
   Arquivo: jupiter-child/css/post-share.css
   ============================================================ */

/* Box compartilhamento */
.ise-share-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    margin: 0 0 32px 0;
    background: #f4f8fd;
    border-radius: 6px;
    flex-wrap: wrap;
}

.ise-share-box__label {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #005eb2;
    margin: 0;
    white-space: nowrap;
}

.ise-share-box__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ise-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: opacity 0.2s ease;
    border: none;
    color: #fff !important;
    line-height: 1;
}

.ise-share-btn:hover {
    opacity: 0.82;
    color: #fff !important;
}

.ise-share-btn svg {
    width: 15px;
    height: 15px;
    fill: #fff;
    flex-shrink: 0;
}

.ise-share-btn--linkedin   { background: #0a66c2; }
.ise-share-btn--whatsapp   { background: #25d366; }
.ise-share-btn--facebook   { background: #1877f2; }

/* Box newsletter */
.ise-newsletter-box {
    padding: 22px 28px;
    margin: 28px 0 16px;
    background: #f4f8fd;
    border-left: 4px solid #005eb2;
    border-radius: 6px;
}

.ise-newsletter-box p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.ise-newsletter-box a {
    color: #005eb2 !important;
    font-weight: 700;
    text-decoration: underline;
}

.ise-newsletter-box a:hover {
    opacity: 0.8;
}

/* Botão autor */
.ise-author-btn-wrap {
    margin: 16px 0 40px;
}

.ise-author-btn {
    display: inline-block;
    padding: 11px 26px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease;
    border: 2px solid #005eb2;
    color: #005eb2 !important;
    background: transparent;
}

.ise-author-btn:hover {
    background: #005eb2;
    color: #fff !important;
}