.cards-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mod-card {
    display: flex;
    align-items: flex-start;
    border-radius: var(--layout-island-border-radius);
    background: var(--theme-color-background-content);
    box-shadow: var(--theme-color-button-secondary-shadow);
    padding: 16px 20px;
}
.mod-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    margin-right: 18px;
}
.mod-info {
    flex: 1;
}
.mod-info h3 {
    line-height: 1.2;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}
.mod-desc {
    font-size: 15px;
    line-height: 1.4;
}
.mod-meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #777;
}
.mod-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 140px;
}
.stat-line {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: #333;
}
.stat-line.small {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}
.actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.project-card {
    cursor: pointer;
    background: var(--theme-color-background-content);
    box-shadow: var(--theme-color-button-secondary-shadow);
    border-radius: var(--layout-island-border-radius);
    background-clip: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
}
.project-card .card-head {
    padding: 2px;
    position: relative;
    display: block;
}
.project-card .resource-cover {
    --background-color: #f3f7f8;
    transition: .2s ease background-color;
    width: 100%;
    min-height: 155px;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 2 / 1;
    background-color: var(--theme-color-background);
    position: relative;
    z-index: 0;
}
.project-card .resource-cover-lg {
    aspect-ratio: 4 / 1;
    min-height: 170px;
}
.resource-logo-lg {
    border: 4px solid var(--theme-color-background-content);
    bottom: -40px;
    left: 22px;
    border-radius: 18px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    background-color: var(--theme-color-background);
    position: absolute;
}
.project-card .card-body {
    display: flex;
    flex: 1 1 auto;
    padding-top: 45px !important;
    flex-direction: column;
    align-items: flex-start;
}
.project-card .card-body h1 {
    font-weight: 600;
    font-size: 22px;
    line-height: normal;
}
.project-card .card-body div span a:hover {
    opacity: 0.85;
}
.project-card .card-body p {
    margin-top: 6px;
    line-height: normal;
    margin-bottom: 8px;
}
.project-loaders {
    display: flex;
    margin-top: 4px;
    align-items: center;
    gap: 8px;
}
.project-loaders span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--theme-color-text-secondary);
}
.project-loaders span svg {
    fill: none;
}
.version-card {
    background: var(--theme-color-background-content);
    box-shadow: var(--theme-color-button-secondary-shadow);
    border-radius: var(--layout-island-border-radius);
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.version-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.version-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
}
.version-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.version-name {
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
}
.version-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: normal;
}
.release {
    color: #00c853;
    background: rgba(0, 200, 83, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}
.beta {
    color: rgb(255, 175, 55);
    background: rgba(255, 175, 55, .15);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}
.alpha {
    color: rgb(255, 53, 53);
    background: rgba(255, 53, 53, .15);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}
.version-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.version-stats {
    display: flex;
    gap: 10px;
    font-size: 16px;
    flex-direction: row;
}
.version-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: normal;
}
.version-stats span svg {
    fill: none;
}
.download-btn {
    color: #fff;
    background: #307df0;
    display: flex;
    border-radius: 16px;
    width: 52px;
    height: 52px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}
.download-btn:hover {
    opacity: 0.85;
}
.download-btn svg {
    width: 28px;
    height: 28px;
    fill: none;
}
.mc-version {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--theme-color-text-secondary);
}
.mc-version svg {
    fill: none;
}
.version-meta .loader {
    color: var(--theme-color-text-secondary);
}