.oies-gov-sector,
.oies-gov-sector * {
    box-sizing: border-box;
}

.oies-gov-sector {
    width: 100%;
    background: #062958;
    color: #fff;
}

.oies-gov-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.oies-gov-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.oies-gov-eyebrow {
    margin: 0 0 12px;
    color: #ff6b00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.oies-gov-intro h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(30px, 3vw, 50px);
    line-height: 1.12;
    font-weight: 700;
}

.oies-gov-intro p,
.oies-gov-card p {
    margin: 0;
    line-height: 1.75;
}

.oies-gov-intro p {
    color: rgba(255,255,255,.86);
}

.oies-gov-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin-top: 26px;
    padding: 13px 20px;
    border-radius: 5px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none !important;
    font-weight: 600;
    transition: background-color .2s ease, transform .2s ease;
}

.oies-gov-btn:hover,
.oies-gov-btn:focus {
    background: #e85f00;
    color: #fff;
}

.oies-gov-btn .arrow {
    line-height: 1;
}

.oies-gov-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 310px;
    padding: 30px 28px 27px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(4,37,79,.28);
    color: #fff;
    text-decoration: none !important;
    overflow: hidden;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.oies-gov-card:hover,
.oies-gov-card:focus {
    background: rgba(5,44,94,.80);
    color: #fff;
}

.oies-gov-logo-wrap {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.oies-gov-logo {
    display: block;
    max-width: 82px;
    max-height: 82px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.oies-gov-card h3 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.oies-gov-card p {
    color: rgba(255,255,255,.86);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .oies-gov-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .oies-gov-container {
        grid-template-columns: 1fr;
    }

    .oies-gov-card {
        min-height: 0;
    }
}
