.stanloop-resources {
    margin: 32px 0;
}

.stanloop-resources__header {
    margin-bottom: 18px;
}

.stanloop-resources__header h2 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
}

.stanloop-resources__header p {
    margin: 0;
    color: #555;
}

.stanloop-resources__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.stanloop-resource-card {
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
}

.stanloop-resource-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.stanloop-resource-card p {
    margin: 0 0 16px;
    color: #444;
}

.stanloop-empty {
    color: #666;
}

@media (max-width: 700px) {
    .stanloop-resources__grid {
        grid-template-columns: 1fr;
    }
}

.stanloop-resources-profile-tab {
    width: 100%;
}

.stanloop-resources-profile-tab .stanloop-resources {
    margin-top: 0;
}

.stanloop-resources .stanloop-button,
.stanloop-resource-card .stanloop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.2;
}

.stanloop-resources .stanloop-button:hover,
.stanloop-resource-card .stanloop-button:hover {
    color: #fff;
    text-decoration: none;
}

.stanloop-resources .stanloop-resource-card {
    overflow-wrap: anywhere;
}

