/* ===== Material Card Style ===== */

#projectList ol {
    list-style: upper-roman;
}
#projectList ol > ol {
    list-style: lower-roman !important;
}

.project-year {
    margin-bottom: 48px;
}

.year-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #263238;
    position: relative;
    padding-left: 14px;
}

.year-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 70%;
    background: #1976d2;
    border-radius: 2px;
}

/* Card */
.md-card {
    background: #f6f6f6;
    border-radius: .5rem;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.08),
        0 8px 16px rgba(0,0,0,0.08);
    overflow: hidden;
        transition: 0.25s ease;
    border: 1px solid #30378b;
}

/* Rows inside card */
.md-card-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 16px 20px;
    /* border-bottom: 1px solid #eee; */
    border-bottom: 1px solid #30378b35;
}

.md-card-row:last-child {
    border-bottom: none;
}

.md-month {
    font-weight: 800;
    color: #1976d2;
    text-transform: uppercase;
    font-size: 18px;
    align-self: start;
    font-family: 'teko';
    border-right: 3px solid #30378b;
}

.md-content {
    font-size: 14px;
    line-height: 1.6;
    color: #111111;
}

.md-content ol,ul {
    list-style-position: outside;
    padding-left: 24px;
}

/* Hover effect */
.md-card:hover {
    box-shadow:
        0 4px 8px rgba(0,0,0,0.12),
        0 12px 24px rgba(0,0,0,0.14);
}

/* Mobile */
@media (max-width: 576px) {
    .md-card-row {
        grid-template-columns: 1fr;
    }

    .md-month {
        /* font-size: 13px; */
        /* opacity: 0.7; */
        border-right: unset !important;
        border-bottom: .5px solid #30378b50;
    }
}

/* #yearFilter {
    border-radius: 12px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    font-weight: 500;
} */

/* ===== Material Select Animation ===== */

.filter-wrap {
    position: relative;
    display: inline-block;
}

/* Custom arrow */
.filter-wrap::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #555;
    transition: transform .25s ease, color .25s ease;
}

/* Rotate arrow on hover */
/* .filter-wrap:hover::after {
    transform: translateY(-50%) rotate(180deg);
    color: #1976d2;
} */

/* Rotate arrow when focused (opened) */
/* .md-select:focus + .filter-wrap::after {
    transform: translateY(-50%) rotate(180deg);
} */

/* Select style */
.md-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding: 10px 36px 10px 14px;
    border-radius: .5rem;
    border: 1px solid #ddd;
    background: #fff;
    font-weight: 500;
    cursor: pointer;

    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all .25s ease;
}

/* Hover lift */
.md-select:hover {
    /* transform: translateY(-1px); */
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* Focus glow */
/* .md-select:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 3px rgba(25,118,210,.15),
                0 8px 18px rgba(0,0,0,0.12);
} */




/* ================================ */
.uwu-hr {
    border: .1rem solid #ff6600; 
    border-radius: .5rem;
    margin-left: 0;
}