/* 고집사 프론트엔드 스타일 */

:root {
    --gojipsa-primary: #0d6efd;
    --gojipsa-secondary: #6c757d;
}

html {
    font-size: 16px;
}

body {
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main, .main-content {
    flex: 1;
}

.hero {
    background: linear-gradient(135deg, var(--gojipsa-primary) 0%, #0a58ca 100%);
}

.navbar-brand {
    font-size: 1.4rem;
}

.card {
    border: none;
    /*box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);*/
}

.badge-rank {
    font-size: 0.7rem;
}

.search-result-item {
    transition: box-shadow 0.2s;
}
.search-result-item:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
