/* ========================================
   THEME OVERRIDES
   Fixes for theme-specific issues
   ======================================== */

/* Photo Focus (I'm a monkey) - Fix link colors */
.theme-photo-focus a:not(.btn):not(.nav-contact):not(.contact-link),
body[data-theme="im-a-monkey"] a:not(.btn):not(.nav-contact):not(.contact-link) {
    color: inherit;
    text-decoration: underline;
}

.theme-photo-focus a:not(.btn):not(.nav-contact):not(.contact-link):hover,
body[data-theme="im-a-monkey"] a:not(.btn):not(.nav-contact):not(.contact-link):hover {
    opacity: 0.7;
}

/* Fullscreen & Epure themes - Fix phone and email field width */
body[data-theme="fullscreen"] .contact-link-wrapper,
body[data-theme="epure"] .contact-link-wrapper {
    width: 100%;
}

body[data-theme="fullscreen"] .contact-links,
body[data-theme="epure"] .contact-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body[data-theme="fullscreen"] .contact-link,
body[data-theme="epure"] .contact-link {
    width: 100%;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

body[data-theme="fullscreen"] .contact-link .editable,
body[data-theme="epure"] .contact-link .editable {
    flex: 1;
    min-width: 0;
    word-break: break-all;
}
