/* --- LIST STYLES --- */
ul {
    list-style: none;
    width: 100%;
}

li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 6px;
    width: 100%;
}

li span.num {
    opacity: 0.4;
    margin-right: 10px;
    min-width: 20px;
    font-size: 11px;
    flex-shrink: 0;
}

li span.item {
    font-weight: bold;
    flex-grow: 1;
}

.collaborators-section li {
    justify-content: space-between;
}

.collaborators-section li span.item {
    text-align: right;
}

.meta-section li {
    justify-content: space-between;
}

.meta-section .cap-content {
    text-align: right;
}

/* --- CAPABILITIES --- */
.capabilities li {
    margin-bottom: 16px;
    align-items: baseline;
}

.capabilities .cap-title {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.capabilities .cap-desc {
    display: block;
    opacity: 0.6;
    font-size: 12px;
    line-height: 1.3;
}

/* --- LINKS --- */
a.email-link {
    display: inline-block;
    margin-top: 10px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: all 0.2s ease;
}

a.email-link:hover {
    background-color: #000;
    color: #fff;
}

/* --- VISUAL FEATURE --- */
.visual-feature img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Blends the white background of the GIF seamlessly into the page */
}

/* --- CONTACT SECTION --- */
.contact-section {
    border-top: 4px solid #000;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.contact-section p {
    font-size: 11px;
    opacity: 0.6;
    text-align: left;
    margin-bottom: 10px;
}

.contact-section a.email-link {
    font-size: 13px;
    margin-bottom: 20px;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00ff00;
    flex-shrink: 0;
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 8px 2px rgba(0, 255, 0, 0.3);
    }
}

/* --- MOBILE COMPONENT OVERRIDES --- */
@media (max-width: 900px) {
    .collaborators-section li {
        justify-content: space-between !important;
    }

    .collaborators-section li span.item {
        text-align: right !important;
    }

    .meta-section li {
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        align-items: baseline;
    }

    .meta-section .cap-content {
        text-align: right !important;
        width: auto !important;
        margin-top: 0 !important;
        padding-left: 15px;
    }
}