.funware-main {
    padding: 20px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.funware-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.funware-card {
    border: 1px solid #dddddd;
    background: #ffffff;
    padding: 20px 22px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 22px;
    position: relative;
}

.funware-year {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 0.72em;
    font-family: var(--font-mono);
    color: #999999;
}

.funware-thumb {
    width: 100px;
    flex-shrink: 0;
    object-fit: contain;
    align-self: center;
}

.funware-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.funware-name {
    margin: 0;
    font-size: 1.1em;
    font-weight: 700;
    font-family: var(--font-mono);
}

.funware-name a {
    color: #000000;
    text-decoration: none;
}

.funware-name a:hover {
    text-decoration: underline;
}

.funware-lang {
    margin: 0;
    font-size: 0.72em;
    color: #888888;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.funware-desc {
    margin: 4px 0 0;
    font-size: 0.88em;
    line-height: 1.65;
    color: #333333;
}

.funware-icons {
    position: absolute;
    bottom: 12px;
    right: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.funware-icon {
    display: inline-flex;
    color: #999999;
    transition: color 0.15s;
}

.funware-icon:hover {
    color: #000000;
}

.funware-icon svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 640px) {
    .funware-card {
        flex-direction: column;
        padding: 16px;
        gap: 14px;
    }

    .funware-thumb {
        width: 80px;
        align-self: flex-start;
    }
}
