:root {
    --navy: #0a2342;
    --navy2: #10325c;
    --blue: #1d6fb8;
    --gold: #f0b429;
    --red: #c0392b;
    --green: #1e7e44;
    --grey: #f4f6f9;
    --line: #dfe4ea;
    --text: #1c2733;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.55
}

a {
    color: var(--blue);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px
}

.topbar {
    background: var(--navy);
    color: #cfe0f0;
    font-size: 13px
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 34px
}

.topbar a {
    color: #cfe0f0
}

header.main {
    background: var(--navy2);
    color: #fff;
    border-bottom: 4px solid var(--gold)
}

header.main .container {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo .crest {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #1d6fb8, #0a2342);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    color: var(--gold);
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
}

.logo h1 {
    font-size: 20px;
    letter-spacing: .5px;
    line-height: 1.1
}

.logo span {
    font-size: 12px;
    color: #a9c4e0;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase
}

header .spacer {
    flex: 1
}

.search {
    display: flex;
    flex-shrink: 0;
}

.search input {
    padding: 8px 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    min-width: 180px
}

.search button {
    background: var(--gold);
    border: none;
    padding: 0 14px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 700
}

nav.main {
    background: var(--navy);
}

nav.main .container {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

nav.main a {
    color: #dce8f5;
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    white-space: nowrap;
}

nav.main a:hover,
nav.main a.active {
    background: var(--blue);
    text-decoration: none
}

.hero {
    position: relative;
    background: linear-gradient(rgba(10, 35, 66, .82), rgba(10, 35, 66, .82)), url('https://picsum.photos/seed/eafhero/1400/500') center/cover;
    color: #fff;
    padding: 70px 0
}

.hero h2 {
    font-size: 38px;
    max-width: 760px;
    line-height: 1.15
}

.hero p {
    margin-top: 16px;
    font-size: 18px;
    max-width: 680px;
    color: #d6e4f3
}

.hero .btns {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn {
    display: inline-block;
    background: var(--gold);
    color: #0a2342;
    padding: 12px 22px;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    cursor: pointer
}

.btn:hover {
    text-decoration: none;
    background: #ffc843
}

.btn.outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff
}

.stats {
    background: var(--grey);
    border-bottom: 1px solid var(--line)
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 18px;
    text-align: center
}

.stats .num {
    font-size: 34px;
    font-weight: 800;
    color: var(--navy)
}

.stats .lbl {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5a6b7b;
    margin-top: 4px
}

section {
    padding: 46px 0
}

.sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--line);
    padding-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
}

.sec-head h3 {
    font-size: 24px;
    color: var(--navy)
}

.sec-head a {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.card {
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: .2s
}

.card:hover {
    box-shadow: 0 8px 24px rgba(10, 35, 66, .13);
    transform: translateY(-3px)
}

.card .thumb {
    height: 170px;
    background: #dbe2ea;
    position: relative;
    overflow: hidden
}

.card .thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.card .cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 2
}

.card .body {
    padding: 15px 16px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.card .meta {
    font-size: 12px;
    color: #7a8794;
    margin-bottom: 7px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.card h4 {
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3
}

.card p {
    font-size: 14px;
    color: #4a5868;
    flex: 1
}

.card .foot {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 6px;
}

.status {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .4px
}

.status.ongoing {
    background: #fff4d6;
    color: #8a6500
}

.status.closed {
    background: #dff3e6;
    color: var(--green)
}

.status.arrest {
    background: #fde2de;
    color: var(--red)
}

.status.seized {
    background: #e2ecfb;
    color: var(--blue)
}

.toolbar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 26px;
    background: var(--grey);
    padding: 16px;
    border-radius: 6px;
    border: 1px solid var(--line)
}

.toolbar select,
.toolbar input {
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}

.toolbar input[type=text] {
    flex: 1;
    min-width: 180px
}

.count {
    font-size: 14px;
    color: #5a6b7b
}

.pager {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 34px;
    flex-wrap: wrap
}

.pager button {
    border: 1px solid var(--line);
    background: #fff;
    padding: 8px 13px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600
}

.pager button.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.pager button:disabled {
    opacity: .4;
    cursor: default
}

.detail-hero {
    height: 340px;
    background: #ccc center/cover;
    position: relative
}

.detail-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(10, 35, 66, .92))
}

.detail-wrap {
    position: relative;
    margin-top: -90px
}

.detail-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    padding: 34px;
    border-top: 5px solid var(--gold)
}

.detail-card h1 {
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2
}

.detail-meta {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #5a6b7b;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
    margin-bottom: 20px
}

.detail-meta b {
    color: var(--navy)
}

.detail-card p {
    margin-bottom: 15px;
    color: #33424f
}

.factbox {
    background: var(--grey);
    border-left: 4px solid var(--blue);
    padding: 18px 20px;
    border-radius: 0 6px 6px 0;
    margin: 20px 0
}

.factbox h4 {
    color: var(--navy);
    margin-bottom: 8px
}

.tags {
    margin-top: 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.tag {
    background: #eaf1f8;
    color: var(--navy);
    font-size: 12px;
    padding: 5px 11px;
    border-radius: 20px;
    font-weight: 600
}

.back {
    display: inline-block;
    margin-bottom: 18px;
    font-weight: 600
}

.page-band {
    background: var(--navy2);
    color: #fff;
    padding: 42px 0;
    border-bottom: 4px solid var(--gold)
}

.page-band h2 {
    font-size: 32px
}

.page-band p {
    color: #cfe0f0;
    margin-top: 8px;
    max-width: 680px
}

.prose {
    max-width: 820px
}

.prose h3 {
    color: var(--navy);
    margin: 26px 0 12px
}

.prose p {
    margin-bottom: 14px;
    color: #33424f
}

.prose ul {
    margin: 0 0 16px 22px;
    color: #33424f
}

.prose li {
    margin-bottom: 7px
}

.admin-box {
    max-width: 480px;
    margin: 60px auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 8px 26px rgba(10, 35, 66, .1)
}

.admin-box h2 {
    color: var(--navy);
    margin-bottom: 6px
}

.admin-box p {
    color: #5a6b7b;
    font-size: 14px;
    margin-bottom: 20px
}

.field {
    margin-bottom: 16px
}

.field label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--navy)
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit
}

.field textarea {
    min-height: 130px;
    resize: vertical
}

.note {
    font-size: 12px;
    color: #7a8794;
    margin-top: 4px
}

.alert {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 16px;
    font-size: 14px
}

.alert.ok {
    background: #dff3e6;
    color: var(--green)
}

.alert.err {
    background: #fde2de;
    color: var(--red)
}

.admin-panel {
    display: none
}

.admin-panel.active {
    display: block
}

.admin-list {
    margin-top: 20px
}

.admin-list .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 5px;
    margin-bottom: 8px;
    font-size: 14px;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-list .row button {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.preview-img {
    max-width: 160px;
    border-radius: 6px;
    margin-top: 8px;
    border: 1px solid var(--line)
}

footer {
    background: var(--navy);
    color: #bcd0e6;
    margin-top: 30px
}

footer .cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 46px 18px
}

footer h5 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px
}

footer a {
    color: #bcd0e6;
    display: block;
    margin-bottom: 8px;
    font-size: 14px
}

footer .bottom {
    border-top: 1px solid #1d3a5f;
    padding: 16px 18px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px
}

/* ===== RESPONSIVE: TABLET (iPad / 768–1024px) ===== */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    footer .cols {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .detail-card h1 {
        font-size: 26px;
    }

    .page-band h2 {
        font-size: 28px;
    }

    .detail-hero {
        height: 260px;
    }

    .detail-wrap {
        margin-top: -60px;
    }

    .detail-card {
        padding: 26px;
    }

    .toolbar {
        padding: 14px;
    }

    .toolbar select,
    .toolbar input {
        padding: 8px 10px;
        font-size: 13px;
    }

    .admin-box {
        max-width: 100%;
        margin: 30px 16px;
        padding: 26px;
    }

    /* Team grid on tablet */
    #team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Admin panel tabs */
    .tab-btn {
        font-size: 13px !important;
        padding: 8px 14px !important;
    }

    header.main .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .search {
        width: 100%;
        order: 3;
    }

    .search input {
        flex: 1;
        min-width: 120px;
    }

    .search button {
        padding: 0 16px;
    }

    /* Report form on homepage */
    #report-form {
        grid-template-columns: 1fr !important;
    }
    #report-form .field {
        grid-column: 1/2 !important;
    }
    #report-form .field:last-of-type {
        grid-column: 1/2 !important;
    }
    #report-form>div {
        grid-column: 1/2 !important;
    }

    /* Cases nav extra links */
    nav.main .container a {
        padding: 10px 14px;
        font-size: 13px;
    }

    .sec-head h3 {
        font-size: 20px;
    }
}

/* ===== RESPONSIVE: MOBILE (under 768px) ===== */
@media (max-width: 767px) {
    .container {
        padding: 0 14px;
    }

    /* Top bar */
    .topbar .container {
        height: auto;
        padding: 6px 14px;
        flex-wrap: wrap;
        gap: 4px;
        font-size: 12px;
    }
    .topbar .container span:first-child {
        flex: 1;
    }

    /* Header */
    header.main .container {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px 14px;
        gap: 8px;
    }
    .logo .crest {
        width: 42px;
        height: 42px;
        font-size: 16px;
        border-width: 2px;
    }
    .logo h1 {
        font-size: 16px;
    }
    .logo span {
        font-size: 10px;
        letter-spacing: 1px;
    }
    .search {
        width: 100%;
        order: 3;
    }
    .search input {
        min-width: 100px;
        font-size: 13px;
        padding: 6px 8px;
    }
    .search button {
        padding: 0 12px;
        font-size: 13px;
    }

    /* Navigation */
    nav.main .container {
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        scrollbar-width: none;
        padding: 0 4px;
    }
    nav.main .container::-webkit-scrollbar {
        display: none;
    }
    nav.main a {
        padding: 10px 12px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Hero */
    .hero {
        padding: 40px 0;
    }
    .hero h2 {
        font-size: 24px;
        max-width: 100%;
    }
    .hero p {
        font-size: 15px;
        max-width: 100%;
        margin-top: 12px;
    }
    .hero .btns {
        margin-top: 18px;
        gap: 10px;
    }
    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* Stats */
    .stats .container {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 20px 14px;
    }
    .stats .num {
        font-size: 26px;
    }
    .stats .lbl {
        font-size: 11px;
    }

    /* Section padding */
    section {
        padding: 30px 0;
    }

    /* Grids */
    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sec-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .sec-head h3 {
        font-size: 20px;
    }
    .sec-head a {
        font-size: 13px;
    }

    .card .thumb {
        height: 140px;
    }
    .card h4 {
        font-size: 15px;
    }
    .card p {
        font-size: 13px;
    }
    .card .body {
        padding: 12px 14px;
    }

    /* Toolbar */
    .toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 8px;
    }
    .toolbar input[type=text] {
        min-width: unset;
        width: 100%;
    }
    .toolbar select {
        width: 100%;
    }

    /* Page band */
    .page-band {
        padding: 28px 0;
    }
    .page-band h2 {
        font-size: 22px;
    }
    .page-band p {
        font-size: 14px;
    }

    /* Detail */
    .detail-hero {
        height: 180px;
    }
    .detail-wrap {
        margin-top: -40px;
    }
    .detail-card {
        padding: 18px 16px;
    }
    .detail-card h1 {
        font-size: 22px;
    }
    .detail-meta {
        font-size: 13px;
        gap: 10px;
        padding-bottom: 12px;
    }
    .detail-meta span {
        width: 100%;
    }
    .factbox {
        padding: 14px 16px;
    }
    .factbox p {
        font-size: 18px !important;
    }

    /* Admin */
    .admin-box {
        margin: 16px 10px;
        padding: 18px 14px;
        border-radius: 6px;
    }
    .admin-box h2 {
        font-size: 20px;
    }

    .tab-btn {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }

    .admin-list .row {
        font-size: 13px;
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .admin-list .row button {
        width: 100%;
        padding: 8px;
        font-size: 13px;
    }

    .preview-img {
        max-width: 120px;
    }

    /* Footer */
    footer .cols {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 30px 14px;
    }
    footer h5 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    footer a {
        font-size: 13px;
    }
    footer .bottom {
        flex-direction: column;
        text-align: center;
        font-size: 12px;
        padding: 12px 14px;
    }

    /* Team grid */
    #team-grid {
        grid-template-columns: 1fr !important;
    }

    /* Report form on homepage */
    #report-form {
        grid-template-columns: 1fr !important;
    }
    #report-form .field {
        grid-column: 1/2 !important;
    }
    #report-form .field:last-of-type {
        grid-column: 1/2 !important;
    }
    #report-form>div {
        grid-column: 1/2 !important;
    }

    /* Cases count */
    .count {
        font-size: 13px;
    }

    /* Prose */
    .prose {
        padding: 0 2px;
    }
    .prose h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }
    .prose p,
    .prose li {
        font-size: 14px;
    }

    /* Pager */
    .pager button {
        padding: 6px 10px;
        font-size: 13px;
    }

    /* Admin panel tabs container */
    #admin-panel .container>[style*="display:flex"]:first-of-type {
        flex-wrap: wrap;
        gap: 4px !important;
    }
    #admin-panel .container>[style*="display:flex"]:first-of-type button {
        padding: 6px 12px !important;
        font-size: 12px !important;
        flex: 1 1 auto;
        min-width: 80px;
        text-align: center;
    }

    /* Admin panel flex row for fields */
    .admin-box>[style*="display:flex"] {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .admin-box>[style*="display:flex"] .field {
        flex: unset !important;
        min-width: unset !important;
        width: 100% !important;
    }

    /* Detail meta on mobile */
    .detail-meta span {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }

    /* Remove extra gap on admin panel top */
    #admin-panel .container>.admin-box {
        margin: 0;
    }
}

/* ===== RESPONSIVE: SMALL PHONES (under 400px) ===== */
@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }

    .logo .crest {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .logo h1 {
        font-size: 14px;
    }
    .logo span {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    nav.main a {
        padding: 8px 10px;
        font-size: 11px;
    }

    .hero h2 {
        font-size: 20px;
    }
    .hero p {
        font-size: 14px;
    }

    .btn {
        padding: 8px 14px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
    .hero .btns {
        flex-direction: column;
        gap: 8px;
    }
    .hero .btns .btn {
        width: 100%;
        text-align: center;
    }

    .stats .num {
        font-size: 22px;
    }
    .stats .lbl {
        font-size: 10px;
    }

    .detail-card h1 {
        font-size: 19px;
    }
    .detail-card {
        padding: 14px 12px;
    }
    .detail-meta {
        font-size: 12px;
    }

    .page-band h2 {
        font-size: 19px;
    }

    .admin-box {
        padding: 14px 10px;
        margin: 10px 6px;
    }

    .field input,
    .field select,
    .field textarea {
        font-size: 13px;
        padding: 8px 10px;
    }

    .card .thumb {
        height: 120px;
    }

    .toolbar {
        padding: 10px;
    }
    .toolbar select,
    .toolbar input {
        font-size: 12px;
        padding: 7px 8px;
    }

    footer .cols {
        padding: 20px 10px;
        gap: 14px;
    }
    footer .bottom {
        font-size: 11px;
        padding: 10px 10px;
    }

    .sec-head h3 {
        font-size: 18px;
    }

    .pager button {
        padding: 5px 8px;
        font-size: 12px;
    }

    .detail-hero {
        height: 140px;
    }
    .detail-wrap {
        margin-top: -30px;
    }

    .tab-btn {
        font-size: 11px !important;
        padding: 5px 8px !important;
        min-width: 60px;
    }
}

/* ===== FIX: ADMIN PANEL LAYOUT ON ALL SCREENS ===== */
#admin-panel .container {
    max-width: 820px;
}

#admin-panel .admin-box .field input,
#admin-panel .admin-box .field select,
#admin-panel .admin-box .field textarea {
    width: 100%;
}

/* ===== FIX: REPORT FORM ON HOMEPAGE ===== */
#report-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

#report-form .field {
    margin-bottom: 0;
}

#report-form .field:last-of-type {
    grid-column: 1/3;
}

#report-form>div:last-of-type {
    grid-column: 1/3;
}

/* ===== FIX: TEAM GRID ===== */
#team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

#team-grid .card {
    padding: 20px;
}

/* ===== FIX: ADMIN TABS ===== */
.tab-btn {
    transition: all 0.2s ease;
}

.tab-btn:hover {
    background: rgba(10, 35, 66, 0.05);
    border-radius: 4px 4px 0 0;
}

/* ===== FIX: IMAGE FALLBACK ON MOBILE ===== */
.card .thumb img,
.detail-hero img {
    max-width: 100%;
    height: auto;
}

/* ===== FIX: TABLET SPECIFIC TWEAKS ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Keep header search visible on tablet */
    .search {
        display: flex !important;
    }

    /* Ensure nav doesn't wrap too much */
    nav.main .container {
        gap: 0;
        flex-wrap: wrap;
    }

    /* Better card grid on tablet */
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Team grid on tablet */
    #team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Footer */
    footer .cols {
        grid-template-columns: 1fr 1fr;
    }

    /* Stats */
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Detail hero */
    .detail-hero {
        height: 260px;
    }
}