/* Hide "Powered by Gitea" in footer */
.page-footer .left-links a[href*="about.gitea.com"] {
    display: none !important;
}

/* Hide "Licenses" link in footer */
.page-footer .right-links a[href*="licenses.txt"] {
    display: none !important;
}

/* Hide "API" link in footer */
.page-footer .right-links a[href*="/api/swagger"] {
    display: none !important;
}

/* Hide "Open Source" hero section on home page */
.hero.ui.icon.header:has(.octicon-code) {
    display: none !important;
}

/* Also hide the paragraph following it */
.hero.ui.icon.header:has(.octicon-code) + p.large {
    display: none !important;
}

/* Hide the parent column of the Open Source section */
.eight.wide.center.column:has(.hero.ui.icon.header .octicon-code) {
    display: none !important;
}
