.page-hero-small {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    display: flex;
    align-items: center;
    background: #071a33;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(7,26,51,.78), rgba(7,26,51,.78)),
        url('../img/mainb.jpg') center / cover no-repeat;
    transform: scale(1.05);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 34px 40px 28px;
    color: #fff;
}

.page-hero-en {
    display: inline-block;
    margin-bottom: 14px;
    color: #d4b067;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .22em;
}

.page-hero-content h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 900;
}

.page-hero-content p {
    margin: 18px 0 0;
    max-width: 760px;
    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 2;
}

.column-search-panel {
    position: relative;
    margin: -70px auto 38px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    border: 1px solid #dbe3ee;
    box-shadow: 0 28px 80px rgba(7,26,51,.14);
    z-index: 5;
}

.column-search-form {
    display: grid;
    grid-template-columns: 1.5fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.column-search-field label {
    display: block;
    margin-bottom: 7px;
    color: #071a33;
    font-size: 13px;
    font-weight: 900;
}

.column-search-field input,
.column-search-field select {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid #cfd8e3;
    border-radius: 12px;
    background: #fff;
    font: inherit;
}

.column-search-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.column-result-head {
    margin: 34px 0 22px;
}

.column-result-head span {
    display: block;
    color: #c79538;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .22em;
}

.column-result-head h2 {
    margin: 6px 0 0;
    color: #071a33;
    font-size: 28px;
}

.column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.column-card {
    background: #fff;
    border: 1px solid #dbe3ee;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 56px rgba(7,26,51,.07);
    transition: .25s;
}

.column-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 70px rgba(7,26,51,.12);
}

.column-card-image {
    display: block;
    height: 220px;
    background: #071a33;
    overflow: hidden;
}

.column-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.column-card:hover .column-card-image img {
    transform: scale(1.05);
}

.column-noimage {
    height: 100%;
    display: grid;
    place-items: center;
    color: #d4b067;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .2em;
    background: linear-gradient(135deg, #071a33, #12345f);
}

.column-card-body {
    padding: 24px;
}

.column-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.column-meta span {
    color: #c79538;
}

.column-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.55;
}

.column-card h3 a {
    color: #071a33;
    text-decoration: none;
}

.column-card p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.9;
}

.column-readmore {
    display: inline-flex;
    margin-top: 18px;
    color: #c79538;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 1000px) {
    .column-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .column-search-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .page-hero-content {
        padding: 26px 20px 22px;
    }

    .page-hero-content h1 {
        font-size: 28px;
    }

    .column-search-panel {
        margin: -36px 0 30px;
        padding: 22px;
        border-radius: 20px;
    }

    .column-search-form,
    .column-grid {
        grid-template-columns: 1fr;
    }

    .column-search-actions .btn {
        width: 100%;
    }
}