a {
    color: #4fe8c1;
    /* base link cyan */
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
    color: #9affd8;
    /* neon hover */
    text-shadow: 0 0 5px #9affd855;
}

/* --- Card / Terminal Theme --- */
.card {
    margin-bottom: 3rem;
    width: 100%;
    position: relative;
    background-color: #1a1c1e;
    /* dark terminal background */
    color: #f5f5f5;
    /* whitish text */
    border-radius: 10px;
    box-shadow: 0 0 15px #7fffd440;
    /* subtle cyan glow */
    padding: 1rem 1.5rem;
    line-height: 1.5;
    font-size: 1rem;
    border: 0;
}

/* Card content adjustments */
.card-content {
    position: relative;
    margin: 0;
}

/* Headings */
.card-content h2 {
    color: #7fffd4;
    /* base cyan */
    margin-bottom: 1rem;
}

.card-content h3,
.card-content h4 {
    color: #5fe0c8;
    /* secondary headings */
}

/* Links */
.card-content a {
    color: #4fe8c1;
    /* base link cyan */
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.card-content a:hover {
    color: #9affd8;
    /* neon hover */
    text-shadow: 0 0 5px #9affd855;
}

/* Small highlights or accent borders */
.card .accent {
    color: #33fff0;
    /* brighter cyan for emphasis */
}

/* Fellowship highlight banner */
.highlight-banner {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin: 2rem 0;
    padding: 1.2rem 1.5rem;
    background-color: #1a1c1e;
    border-left: 3px solid #7fffd4;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(127, 255, 212, 0.25);
    line-height: 1.45;
}

.highlight-banner .banner-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.highlight-banner .banner-title {
    display: block;
    color: #7fffd4;
    /* cyan accent, matching publication headings */
    font-weight: 600;
    font-size: 1.05rem;
}

.highlight-banner .banner-sub {
    display: block;
    color: #dcdcdc;
    font-size: 0.9rem;
    margin-top: 0.15rem;
}

/* "Looking for something?" box — same shell as the highlight banner */
.lookup-box {
    margin: 2rem 0 3rem;
    padding: 1.2rem 1.5rem;
    background-color: #1a1c1e;
    border-left: 3px solid #7fffd4;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(127, 255, 212, 0.25);
    color: #f5f5f5;
    line-height: 1.45;
}

.lookup-box .lookup-title {
    display: block;
    color: #7fffd4;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
}

.lookup-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lookup-box li {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    padding: 0.3rem 0;
    font-size: 0.95rem;
}

.lookup-box li .lookup-icon {
    flex: 0 0 1.4rem;
    font-size: 1.05rem;
}

.lookup-box a {
    color: #4fe8c1;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.lookup-box a:hover {
    color: #9affd8;
    text-shadow: 0 0 5px #9affd855;
}

/* Terminal body specifics */
.terminal-body {
    color: #7fffd4;
    /* terminal cyan text */
    background-color: #1a1c1e;
    /* same dark background */
    padding: 1rem 1.5rem;
    border-radius: 10px;
    width: 100%;
    margin: 3rem auto;
    box-shadow: 0 0 15px #7fffd440;
    font-family: monospace;
    line-height: 1.5;
    font-size: 1rem;
    border: 0;
}

.terminal-value {
    color: #dcdcdc
}
