/* Phantom Theme Overrides & Customizations */

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

.mobile-nav-trigger {
    display: block;
}

@media screen and (min-width: 981px) {
    .desktop-nav {
        display: inline-block;
        vertical-align: middle;
        margin-right: 2em;
    }

    .desktop-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 2em;
    }

    .desktop-nav ul li {
        display: inline-block;
        padding: 0;
        margin: 0;
    }

    .desktop-nav ul li a {
        border: 0;
        background-color: #000000;
        color: #ffffff;
        /* Default Phantom text color */
        display: block;
        font-size: 0.8em;
        font-weight: bold;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        text-decoration: none;
        transition: color 0.2s ease-in-out;
        padding: 0.5em 1em;
        /* Added padding for better visual with background */
        border-radius: 4px;
        /* Optional: rounded corners */
    }

    .desktop-nav ul li a:hover {
        color: #f56a6a;
        /* Phantom accent color */
    }

    .mobile-nav-trigger {
        display: none;
    }
}

/* Ensure images in tiles cover the area nicely */
.tiles article .image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}