/**
 * ISPConnect - Additional theme styles
 * Copyright (c) Mas Hedi. ISPConnect by Mas Hedi.
 */

/* Ensure logo in header doesn't overflow */
.site-branding .custom-logo-link img {
    max-height: 44px;
    width: auto;
    height: auto;
}

/* Footer logo */
.footer-brand .custom-logo-link img {
    max-height: 48px;
    filter: brightness(0) invert(1);
}

/* Post thumbnail in single */
.post-thumbnail {
    margin: 0 0 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pagination */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span,
.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    background: var(--color-bg-alt);
    color: var(--color-text);
    font-weight: 500;
    transition: all var(--transition);
}

.pagination a:hover,
.nav-links a:hover {
    background: var(--color-primary);
    color: white;
}

.pagination .current,
.nav-links .current {
    background: var(--color-primary);
    color: white;
}

/* Footer credit - ISPConnect by Mas Hedi */
.site-footer .footer-bottom .ispconnect-credit {
    opacity: 0.85;
}
.site-footer .footer-bottom .ispconnect-credit a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.site-footer .footer-bottom .ispconnect-credit a:hover {
    color: rgba(255, 255, 255, 0.95);
}
