/* Custom enhancements for justinwerff.nl */

/* === LOGO === */
#header .logo {
    border-color: rgba(100, 200, 255, 0.3);
    box-shadow: 0 0 22px rgba(100, 200, 255, 0.12), inset 0 0 22px rgba(100, 200, 255, 0.05);
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 18px rgba(100, 200, 255, 0.1), inset 0 0 18px rgba(100, 200, 255, 0.04); }
    50%       { box-shadow: 0 0 35px rgba(100, 200, 255, 0.28), inset 0 0 28px rgba(100, 200, 255, 0.1); }
}

#header .logo .icon::before {
    color: rgba(140, 215, 255, 0.95);
    text-shadow: 0 0 14px rgba(100, 200, 255, 0.7);
}

/* === HEADINGS === */
h2.major {
    border-bottom-color: rgba(100, 200, 255, 0.5);
    text-shadow: 0 0 25px rgba(100, 200, 255, 0.12);
}

/* === HEADER SUBTITLE === */
#header .content .inner p {
    font-size: 0.88rem;
    letter-spacing: 0.08rem;
    opacity: 0.75;
}

/* === ARTICLE LINKS === */
#main article p a,
#main article li a {
    color: rgba(150, 220, 255, 0.95);
    border-bottom-color: rgba(150, 220, 255, 0.3);
}

#main article p a:hover,
#main article li a:hover {
    color: #ffffff;
    border-bottom-color: transparent;
    text-shadow: 0 0 8px rgba(100, 200, 255, 0.45);
}

/* === LIST BULLETS === */
#main article ul {
    list-style: none;
    padding-left: 1.4em;
}

#main article ul li {
    position: relative;
    padding-left: 0.2em;
    margin-bottom: 0.4em;
    line-height: 1.6;
}

#main article ul li::before {
    content: '';
    position: absolute;
    left: -1.1em;
    top: 0.6em;
    width: 0.42em;
    height: 0.42em;
    background: rgba(100, 200, 255, 0.75);
    border-radius: 50%;
    box-shadow: 0 0 7px rgba(100, 200, 255, 0.5);
}

/* === SECTION LABELS === */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(100, 200, 255, 0.75);
    margin: 2rem 0 0.75rem;
    text-shadow: 0 0 10px rgba(100, 200, 255, 0.3);
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(100, 200, 255, 0.3), transparent);
}

.section-label:first-of-type {
    margin-top: 0.5rem;
}

/* === SKILL TAGS === */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 2rem 0;
}

.skill-tag {
    display: inline-block;
    background: rgba(100, 200, 255, 0.07);
    border: 1px solid rgba(100, 200, 255, 0.22);
    border-radius: 3px;
    padding: 0.22rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: rgba(170, 225, 255, 0.85);
    transition: all 0.2s ease;
    cursor: default;
}

.skill-tag:hover {
    background: rgba(100, 200, 255, 0.16);
    border-color: rgba(100, 200, 255, 0.55);
    box-shadow: 0 0 12px rgba(100, 200, 255, 0.18);
    color: #ffffff;
}

/* === CALLOUT BOX === */
.callout {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-left: 3px solid rgba(100, 200, 255, 0.55);
    border-radius: 0 4px 4px 0;
    padding: 1rem 1.3rem;
    margin: 1.5rem 0 2rem;
    box-shadow: -3px 0 14px rgba(100, 200, 255, 0.1);
}

.callout p:last-child {
    margin-bottom: 0;
}

/* === CERT CARDS === */
.cert-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0 0 2rem;
}

.cert-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 3px solid rgba(100, 200, 255, 0.4);
    border-radius: 0 5px 5px 0;
    padding: 0.9rem 1.15rem;
    transition: all 0.25s ease;
}

.cert-card:hover {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.1) 0%, rgba(100, 200, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.14);
    border-left-color: rgba(100, 200, 255, 0.9);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), -3px 0 16px rgba(100, 200, 255, 0.18);
    transform: translateX(4px);
}

.cert-card .cert-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
    line-height: 1.4;
}

.cert-card .cert-issuer {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    color: rgba(100, 200, 255, 0.6);
    margin-bottom: 0.3rem;
}

.cert-card .cert-meta {
    font-size: 0.72rem;
    opacity: 0.3;
    line-height: 1.4;
}

.cert-card .cert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.65rem;
}

/* === DOWNLOAD CARDS === */
a.download-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 3px solid rgba(100, 200, 255, 0.4);
    border-radius: 0 5px 5px 0;
    padding: 1.1rem 1.3rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

a.download-card:hover {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.1) 0%, rgba(100, 200, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.14);
    border-left-color: rgba(100, 200, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3), -3px 0 16px rgba(100, 200, 255, 0.18);
    transform: translateX(4px);
}

a.download-card .download-icon {
    font-size: 2rem;
    color: rgba(100, 200, 255, 0.55);
    flex-shrink: 0;
    width: 2.4rem;
    text-align: center;
    transition: all 0.25s ease;
}

a.download-card:hover .download-icon {
    color: rgba(100, 200, 255, 0.95);
    text-shadow: 0 0 16px rgba(100, 200, 255, 0.5);
}

a.download-card .download-info {
    flex: 1;
}

a.download-card .download-name {
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
    letter-spacing: 0.03rem;
}

a.download-card .download-desc {
    font-size: 0.75rem;
    color: rgba(100, 200, 255, 0.5);
    letter-spacing: 0.04rem;
}

a.download-card .download-arrow {
    font-size: 0.9rem;
    color: rgba(100, 200, 255, 0.25);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

a.download-card:hover .download-arrow {
    color: rgba(100, 200, 255, 0.9);
    text-shadow: 0 0 10px rgba(100, 200, 255, 0.5);
    transform: translate(2px, -2px);
}

/* === FOOTER === */
#footer .copyright .icon {
    margin-right: 0.25rem;
    font-size: 0.85em;
    opacity: 0.75;
}

#footer .copyright a {
    margin: 0 0.15rem;
}

/* ============================================
   HOMELAB SECTION
   ============================================ */

/* Hero row: text left, terminal right */
.hl-hero-row {
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 18px;
    align-items: start;
    margin-bottom: 6px;
}

/* Pretitle */
.hl-pretitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.65rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: rgba(100, 200, 255, 0.6);
    margin-bottom: 12px;
}
.hl-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #28c840;
    box-shadow: 0 0 0 3px rgba(40, 200, 64, 0.22);
    flex-shrink: 0;
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(40,200,64,0.22); }
    50%       { box-shadow: 0 0 0 5px rgba(40,200,64,0.1); }
}
.hl-lead {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 0;
}

/* Terminal widget */
.hl-terminal {
    background: rgba(8, 10, 14, 0.96);
    border: 1px solid rgba(100, 200, 255, 0.18);
    border-radius: 7px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    font-size: 10.5px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.55), 0 0 32px rgba(100,200,255,0.05);
}
.hl-term-bar {
    background: rgba(255,255,255,0.045);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hl-dot-r { width: 9px; height: 9px; border-radius: 50%; background: #ff5f57; flex-shrink: 0; }
.hl-dot-y { width: 9px; height: 9px; border-radius: 50%; background: #febc2e; flex-shrink: 0; }
.hl-dot-g { width: 9px; height: 9px; border-radius: 50%; background: #28c840; flex-shrink: 0; }
.hl-term-title { margin-left: 7px; color: rgba(255,255,255,0.25); font-size: 9.5px; letter-spacing: 0.02em; }
.hl-term-body { padding: 12px 14px; line-height: 1.9; color: rgba(255,255,255,0.42); }
.tc-g { color: #28c840; }
.tc-b { color: rgba(100, 200, 255, 0.92); }
.tc-y { color: #febc2e; }
.tc-w { color: rgba(255, 255, 255, 0.85); }
.tc-dim { color: rgba(255, 255, 255, 0.18); }
.hl-cursor {
    display: inline-block;
    width: 6px;
    height: 11px;
    background: #28c840;
    vertical-align: middle;
    animation: hlcur 1.1s step-end infinite;
}
@keyframes hlcur { 50% { opacity: 0; } }

/* Collapse terminal on narrow panels */
@media screen and (max-width: 600px) {
    .hl-hero-row { grid-template-columns: 1fr; }
    .hl-terminal  { display: none; }
}

/* Stats strip */
.hl-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(100, 200, 255, 0.12);
    border: 1px solid rgba(100, 200, 255, 0.12);
    border-radius: 4px;
    margin: 1.5rem 0 2.2rem;
    overflow: hidden;
}
.hl-stat {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 8px;
    text-align: center;
    transition: background 0.2s;
}
.hl-stat:hover { background: rgba(100, 200, 255, 0.06); }
.hl-stat .s-val {
    font-size: 1.45rem;
    font-weight: 600;
    color: rgba(140, 215, 255, 0.95);
    text-shadow: 0 0 18px rgba(100, 200, 255, 0.4);
    line-height: 1.1;
    margin-bottom: 4px;
}
.hl-stat .s-lbl {
    font-size: 0.6rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* Hardware grid */
.hw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0 0 2rem;
}
.hw-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 3px solid rgba(100, 200, 255, 0.4);
    border-radius: 0 5px 5px 0;
    padding: 16px 16px 14px;
    transition: all 0.25s ease;
}
.hw-card:hover {
    background: linear-gradient(135deg, rgba(100,200,255,0.09) 0%, rgba(100,200,255,0.025) 100%);
    border-left-color: rgba(100, 200, 255, 0.9);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3), -3px 0 16px rgba(100,200,255,0.15);
    transform: translateX(3px);
}
.hw-card-tag {
    font-size: 0.6rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: rgba(100, 200, 255, 0.6);
    margin-bottom: 5px;
}
.hw-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 3px;
    letter-spacing: 0.02rem;
    border: none;
    padding: 0;
}
.hw-card h4 span { color: rgba(140, 215, 255, 0.9); }
.hw-card-sub {
    font-size: 0.72rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.32);
    margin-bottom: 14px;
}
.hw-specs {
    list-style: none !important;
    padding-left: 0 !important;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 10px;
    margin-bottom: 0;
}
.hw-specs li {
    display: flex !important;
    gap: 8px;
    padding: 5px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.78rem;
    line-height: 1.4;
    margin-bottom: 0 !important;
    position: static !important;
    padding-left: 0 !important;
}
.hw-specs li::before { display: none !important; }
.hw-specs li:last-child { border-bottom: 0; }
.hw-specs .k {
    font-size: 0.58rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: rgba(100, 200, 255, 0.45);
    min-width: 68px;
    flex-shrink: 0;
    padding-top: 2px;
}
.hw-specs .v { color: rgba(255, 255, 255, 0.65); }

/* Network diagram */
.net-diagram {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 5px;
    overflow: hidden;
    margin: 0.5rem 0 2rem;
}
.net-layer {
    padding: 10px 14px 10px 62px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.net-layer:last-child { border-bottom: 0; }
.net-layer-lbl {
    position: absolute;
    left: 0; top: 10px;
    width: 56px;
    text-align: right;
    font-size: 0.55rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: rgba(100, 200, 255, 0.3);
    padding-right: 6px;
}
.net-node {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 3px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}
.net-node .nd {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #28c840;
    box-shadow: 0 0 6px rgba(40,200,64,0.5);
    flex-shrink: 0;
}
.net-node .nd-b { background: rgba(100,200,255,0.85); box-shadow: 0 0 6px rgba(100,200,255,0.4); }
.net-node .nd-y { background: rgba(255,200,80,0.85); box-shadow: 0 0 6px rgba(255,200,80,0.3); }
.net-node small { font-size: 0.62rem; color: rgba(100,200,255,0.38); margin-left: auto; letter-spacing: 0.04rem; }
.net-conn {
    padding: 5px 14px 5px 62px;
    font-size: 0.6rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: rgba(100,200,255,0.38);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(100,200,255,0.02);
}

/* Services grid */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 0 0 2rem;
}
.svc-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 3px solid rgba(100, 200, 255, 0.28);
    border-radius: 0 4px 4px 0;
    padding: 12px 14px 11px;
    transition: all 0.25s ease;
}
.svc-card:hover {
    background: linear-gradient(135deg, rgba(100,200,255,0.08) 0%, rgba(100,200,255,0.02) 100%);
    border-left-color: rgba(100, 200, 255, 0.9);
    box-shadow: 0 4px 18px rgba(0,0,0,0.25), -3px 0 12px rgba(100,200,255,0.12);
    transform: translateX(3px);
}
.svc-card-top {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 5px;
}
.svc-num {
    font-size: 0.6rem;
    color: rgba(100,200,255,0.3);
    font-style: italic;
    min-width: 16px;
}
.svc-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.01rem;
}
.svc-desc {
    font-size: 0.76rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.42);
    margin-bottom: 8px !important;
}
.svc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
}
.svc-os {
    font-size: 0.58rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
}

/* Stack grid */
.stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 0 0 2rem;
}
.stack-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 2px solid rgba(100,200,255,0.38);
    border-radius: 0 0 4px 4px;
    padding: 16px 14px 14px;
}
.stack-card .stack-lbl {
    font-size: 0.58rem;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    color: rgba(100,200,255,0.5);
    margin-bottom: 6px;
}
.stack-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.3;
    border: none;
    padding: 0;
}
.stack-card h4 span { color: rgba(140,215,255,0.9); }
.stack-card p {
    font-size: 0.76rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.38);
    margin-bottom: 0;
}

/* ===== BACKUP SECTION ===== */
.backup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 0 14px;
}
@media screen and (max-width: 560px) {
    .backup-grid { grid-template-columns: 1fr; }
}

.backup-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 6px;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
    overflow: hidden;
}
.backup-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 6px 6px 0 0;
}
.backup-onsite::before  { background: rgba(40,  200, 64,  0.8); box-shadow: 0 0 12px rgba(40,200,64,0.4); }
.backup-offsite::before { background: rgba(100, 200, 255, 0.8); box-shadow: 0 0 12px rgba(100,200,255,0.3); }
.backup-cold::before    { background: rgba(255, 200, 80,  0.8); box-shadow: 0 0 12px rgba(255,200,80,0.3); }

.backup-onsite:hover  { background: linear-gradient(160deg, rgba(40,200,64,0.08) 0%, rgba(40,200,64,0.02) 100%); border-color: rgba(40,200,64,0.25); box-shadow: 0 8px 28px rgba(0,0,0,0.3), 0 0 20px rgba(40,200,64,0.08); }
.backup-offsite:hover { background: linear-gradient(160deg, rgba(100,200,255,0.08) 0%, rgba(100,200,255,0.02) 100%); border-color: rgba(100,200,255,0.25); box-shadow: 0 8px 28px rgba(0,0,0,0.3), 0 0 20px rgba(100,200,255,0.08); }
.backup-cold:hover    { background: linear-gradient(160deg, rgba(255,200,80,0.08) 0%, rgba(255,200,80,0.02) 100%); border-color: rgba(255,200,80,0.25); box-shadow: 0 8px 28px rgba(0,0,0,0.3), 0 0 20px rgba(255,200,80,0.08); }

.backup-num {
    position: absolute;
    top: 12px; right: 12px;
    font-size: 0.62rem;
    letter-spacing: 0.1rem;
    color: rgba(255,255,255,0.18);
    font-style: italic;
}
.backup-icon {
    font-size: 1.6rem;
    margin: 6px 0 10px;
}
.backup-onsite  .backup-icon { color: rgba(40,  200, 64,  0.8); text-shadow: 0 0 16px rgba(40,200,64,0.4); }
.backup-offsite .backup-icon { color: rgba(100, 200, 255, 0.8); text-shadow: 0 0 16px rgba(100,200,255,0.3); }
.backup-cold    .backup-icon { color: rgba(255, 200, 80,  0.8); text-shadow: 0 0 16px rgba(255,200,80,0.3); }

.backup-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: 0.02rem;
}
.backup-sub {
    font-size: 0.62rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-bottom: 12px;
}
.backup-desc {
    font-size: 0.76rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px !important;
    flex: 1;
}
.backup-tag {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
    padding: 3px 9px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* 3-2-1 rule strip */
.backup-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 5px;
    padding: 14px 10px;
    margin-bottom: 2rem;
}
.br-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 16px;
}
.br-num {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(140, 215, 255, 0.9);
    text-shadow: 0 0 16px rgba(100,200,255,0.35);
    line-height: 1;
}
.br-lbl {
    font-size: 0.6rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.br-sep {
    color: rgba(100,200,255,0.25);
    font-size: 0.7rem;
    padding: 0 4px;
}

/* Taught list inside callout */
.taught-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0;
}
.taught-list li {
    display: flex !important;
    gap: 12px;
    align-items: flex-start;
    padding: 9px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.83rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    position: static !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}
.taught-list li::before { display: none !important; }
.taught-list li:last-child { border-bottom: 0; padding-bottom: 0 !important; }
.taught-list .ti {
    font-style: italic;
    color: rgba(100,200,255,0.65);
    font-size: 0.88rem;
    min-width: 18px;
    flex-shrink: 0;
    padding-top: 1px;
}

/* Responsive */
@media screen and (max-width: 480px) {
    .hl-stats  { grid-template-columns: repeat(2, 1fr); }
    .hw-grid   { grid-template-columns: 1fr; }
    .svc-grid  { grid-template-columns: 1fr; }
    .stack-grid { grid-template-columns: 1fr; }
}
