.company-page {
    width: 100%;
    max-width: 1120px;
    margin: 18px auto;
    padding: 0 12px 20px;
}

.company-section {
    margin-bottom: 14px;
}

.company-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 14px;
    align-items: start;
}

.company-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px 0;
}

.company-image-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: var(--oa-radius-md);
    box-shadow: var(--oa-shadow-sm);
}

.company-anchor-title {
    margin: 0 0 6px 0;
}

.company-anchor-list {
    margin: 0;
    padding-left: 18px;
}

.company-anchor-list li {
    margin-bottom: 6px;
}

.company-split-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 12px;
    align-items: center;
}

.company-video-wrap {
    width: 100%;
}

.company-video {
    width: 100%;
    height: auto;
    border-radius: var(--oa-radius-md);
    box-shadow: var(--oa-shadow-sm);
    background: #000;
}

.company-video-modal {
    width: 100%;
    max-height: 78vh;
    height: auto;
    background: #000;
}

.company-stack-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
}

.company-grid-stats {
    margin-top: 8px;
    border: 0.5px solid darkblue;
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 8px;
    padding: 6px;
}

.company-grid-stats div {
    padding: 6px;
}

.company-grid-stats .value {
    text-align: center;
    font-weight: 600;
}

.company-return-menu {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: var(--oa-primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(19, 107, 58, 0.24);
    z-index: 1000;
}

.company-return-menu svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.company-footer {
    margin-top: 8px;
}

@media (max-width: 900px) {
    .company-two-col,
    .company-split-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .company-return-menu {
        display: none;
    }
}
