/* Remove SVG title tooltips - SVG titles can't be hidden with display:none */
.social-icons svg {
    pointer-events: none;
}

.social-icons a {
    pointer-events: auto;
}

/* Make header title smaller on mobile devices */
@media (max-width: 768px) {
    .header-title {
        font-size: 2em;
    }
}

/* Cover image styling */
.single-cover-image {
    width: 100%;
    margin: 1.5rem 0;
    overflow: hidden;
}

.single-cover-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px;
}
