/* Blog post title readability */
.post-template-content .hero-title.primary-font-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: clamp(2.25rem, 5vw, 4.75rem) !important;
    line-height: 1.08 !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.post-template-content #hero #hero-caption {
    max-width: 1120px;
}

.post-template-content .hero-title.primary-font-title span {
    font-family: 'Poppins', sans-serif !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.post-share-wrap {
    position: relative;
    margin: 70px 0 35px;
}

.post-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.post-share-label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.post-share-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-share-button {
    position: relative;
    width: 44px;
    height: 44px;
    min-width: 44px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    font-size: 0;
    line-height: 1;
    text-align: center;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.post-share-button::before,
.post-share-button::after {
    display: none !important;
    content: none !important;
}

.post-share-button i,
.post-share-button svg {
    position: absolute !important;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    transform: translate(-50%, -50%) !important;
}

.post-share-button .fa-facebook-f {
    font-size: 15px;
}

.post-share-button .fa-linkedin-in {
    font-size: 16px;
}

.post-share-button .fa-instagram,
.post-share-button .fa-whatsapp {
    font-size: 17px;
}

.post-share-button:hover {
    background-color: var(--primary-color, #EA2323);
    border-color: var(--primary-color, #EA2323);
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .post-template-content .hero-title.primary-font-title {
        font-size: clamp(2rem, 9vw, 3rem) !important;
        line-height: 1.12 !important;
        max-width: 92vw;
    }

    .post-share {
        align-items: flex-start;
        flex-direction: column;
    }
}
