/* Project List */
/* #region */
.projects > li {
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 15px;
    max-width: 900px;

    gap: 20px;
}

.projects > li:not(:last-child) {
    border-bottom: 1px solid var(--text-normal);
}

li h3, li h4 {
    margin: 0;
}

.dropdown-header {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-header:hover > h3 {
    color: var(--accent-secondary);
}

.meta {
    margin: 0;
    display: flex;
    gap: 2.5em;
}

.chevron {
    display: inline-block;
    transition: transform  0.3s ease;
    font-size: 1.2em;
}

.dropdown-content {
    gap: 20px;
}

.image-group {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

@media (max-width: 700px) {
    .dropdown-content {
        flex-direction: column;
    }

    h3 {
        font-size: 1.1em;
    }
    h4 {
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    .dropdown-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .meta {
        flex-direction: row-reverse;
        gap: 2ex;
    }
}

/* #endregion */