.project-section {
    position: relative;
    padding: 60px 80px;
    min-height: 500px;
    color: #D4A76A;
    font-family: "Inknut Antiqua", serif;
    margin-top: 10px;
}

.project-title h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
}

.project-title h1 {
    font-size: 72px;
    font-weight: 700;
    margin: 0;
}

.project-links dl {
    margin: 0;
    padding: 0;
}

.project-links dt {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 2px solid #FEEFC5;
    margin-bottom: 15px;
    padding-bottom: 5px;
    padding-right: 20px;
    color: #FEEFC5;
}

.project-links dd {
    margin: 0 0 15px 0;
    display: flex;
    align-items: flex-start;
}

.project-links dd::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 6px;
    vertical-align: middle;
    background: url("https://static.igem.wiki/teams/5972/uploads/header-subpage/labsubyellow.svg") no-repeat center/contain;
    flex-shrink: 0;
}

.project-links a {
    position: relative;
    font-size: 20px;
    text-decoration: none;
    color: #FEEFC5;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.project-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #FEEFC5;
    transition: width 0.3s ease;
}

.project-links a:hover::after {
    width: 100%;
}

.project-links a:hover {
    color: #FEEFC5;
}