.full-image img {
    width: 100%;
    height: auto;
}
.blog_detail_info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 4px;
}
li.blog_category {
    display: inline-block;
    border-radius: 3px;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
h1.custom-heading {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: "Playfair Display", serif;
}
.wp-block-list li {
    margin-bottom: var(--wp--preset--spacing--10);
}
.share-button {
    margin-left: auto;
    margin-right: 5px;
    cursor: pointer;
}
.view-all-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
}

/* Tooltip Styling */
.custom-tooltip {
    position: absolute;
    bottom: 120%; /* Position above the icon */
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

/* Arrow for Tooltip */
.custom-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}
.share-button svg, 
.share-button svg path {
    pointer-events: none; /* The SVG won't intercept the click */
}
/* Show State (Triggered by jQuery) */
.share-button.show-success .custom-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}
    p, li{
        font-size:16px;
    }
    .wp-block-buttons .wp-block-button__link:hover {
        background: var(--primary-color) !important;
        color: #fff !important;
    }
    .wp-block-buttons .wp-block-button__link {
        transition: 0.3s all;
    }
    @media screen and (max-width: 500px) {
         h1.custom-heading {
            font-size: 2rem;
         }
    }