/* Contact */
.contact-us-header {
    color: #ffc107;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    text-align: center;
    text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.7);
    margin: 1.25rem 0;
}

.contact-us-text {
    color: #fff;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin: 1rem auto;
    max-width: 50rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 0.5rem;
}

    .contact-us-text a {
        color: #ffc107;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s, text-shadow 0.3s;
    }

        .contact-us-text a:hover {
            color: #ffeb3b;
            text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.7);
        }

    .contact-us-text ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
    }

        .contact-us-text ul li {
            display: flex;
            gap: 0.5rem;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }

/* Ny wrapper */
.contact-item {
    display: flex;
    flex-direction: column; /* 🔥 nyckeln */
    gap: 0.25rem;
}

    /* Email ska brytas snyggt */
    .contact-item a {
        word-break: break-word; /* fallback */
        overflow-wrap: anywhere; /* 🔥 modern best practice */
    }

            .contact-us-text ul li::before {
                content: "✉";
                color: #ffc107;
                font-size: 1.2rem;
            }
.contact-item strong {
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-item a {
    font-size: 0.95rem;
}