.si-hero {
    padding: 0;
}
.search-input{
    padding-left:0px;
}
/* Full-width hero: one continuous black banner */
.si-hero-full {
    position: relative;
    background: #000;
    overflow: hidden;
}

.si-hero-full .row > [class*="col-"] {
    display: flex;
}

/* Animated background layer (behind text) */
.si-hero-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

.si-starfield-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Left content sits on the same black background (no separate panel) */
.si-hero-left {
    min-height: 340px;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 40px 48px 60px 48px;
    flex: 1 1 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.si-hero-content {
    position: relative;
    z-index: 2;
}

.si-hero-title {
    font-size: 44px;
    line-height: 1.1;
}

.si-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Right side image blended into the same black banner */
.si-hero-media {
    width: 100%;
    min-height: 340px;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    flex: 1 1 auto;
    z-index: 1;
}

/* Black overlay (reduced) so the image stays clearer */
.si-hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Blend the image into the black left side so it feels continuous */
.si-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.55) 20%,
        rgba(0, 0, 0, 0.0) 65%
    );
    z-index: 2;
}

.si-section {
    padding: 70px 0;
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

.si-tile {
    position: relative;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.si-tile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.si-tile-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.si-tile-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.1);
}

.si-tile-icon i {
    color: #fff;
    font-size: 34px;
    line-height: 1;
}

.si-tile-icon span {
    color: #fff;
    font-size: 34px;
    line-height: 1;
}

.si-see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    text-decoration: none;
    width: fit-content;
}

.si-see-all-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 991.98px) {
    .si-hero-left {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 767.98px) {
    .si-hero-left {
        min-height: auto;
        padding: 28px 12px 44px 12px;
    }

    .si-hero-media {
        min-height: 200px;
    }

    .si-hero-title {
        font-size: 34px;
    }

    .si-tile {
        min-height: 280px;
    }

    .si-tile-content {
        padding: 24px;
    }
}

/* Skeleton placeholders */
.si-skel {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 10px;
}

.si-skel::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.00) 0%,
        rgba(255, 255, 255, 0.16) 45%,
        rgba(255, 255, 255, 0.00) 100%
    );
    animation: si-shimmer 1.2s linear infinite;
}

@keyframes si-shimmer {
    100% {
        transform: translateX(100%);
    }
}

.si-skel-title {
    height: 44px;
    max-width: 420px;
}

.si-skel-subtitle {
    height: 26px;
    max-width: 320px;
}

.si-skel-line {
    height: 14px;
    border-radius: 999px;
}

.si-skel-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
}

.si-skel-btn {
    width: 120px;
    height: 36px;
    border-radius: 999px;
}

.si-hero-media--placeholder {
    background: rgba(255, 255, 255, 0.06);
}

.si-hero-media-skel {
    position: absolute;
    inset: 0;
    border-radius: 0;
    z-index: 0;
    background: rgba(255, 255, 255, 0.08);
}

/* keep skeleton visible (reduce overlays on placeholder media) */
.si-hero-media--placeholder::before {
    background: rgba(0, 0, 0, 0.35);
}

.si-hero-media--placeholder::after {
    opacity: 0.35;
}

.si-tile--placeholder {
    background: rgba(255, 255, 255, 0.06);
}

/* Organisations listing */
.si-org-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.si-org-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
}

.si-org-avatar-skel {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.si-org-container {
     max-width: 1200px;
}

.si-org-company-info {
    white-space: normal;
    overflow-wrap: anywhere;
}

.si-company-shell {
    position: relative;
}

.si-company-cover {
    position: relative;
    min-height: 280px;
    border-radius: 20px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #08111f 0%, #102b52 55%, #173f79 100%);
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(5, 17, 40, 0.12);
}

.si-company-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
        radial-gradient(circle at bottom left, rgba(114, 180, 255, 0.22), transparent 28%);
}

.si-company-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 15, 30, 0.08), rgba(6, 15, 30, 0.58));
}

.si-company-cover-actions {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    z-index: 3;
}

.si-company-cover-action-btn {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(7, 16, 31, 0.55);
    color: #fff;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(5, 17, 40, 0.18);
}

.si-company-cover-action-btn:hover,
.si-company-cover-action-btn:focus,
.si-company-cover-action-btn:active {
    color: #fff;
    background: rgba(7, 16, 31, 0.72);
    border-color: rgba(255, 255, 255, 0.34);
}

.si-company-head {
    margin: -38px 0 0;
    border-radius: 0 0 20px 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

.si-company-head .card-body {
    padding-top: 1.9rem !important;
    padding-bottom: 1.9rem !important;
}

.si-company-avatar-wrap {
    flex: 0 0 auto;
    margin-top: -72px;
    position: relative;
}

.si-company-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    background: #f8f9fa;
    border: 5px solid #fff;
    box-shadow: 0 14px 28px rgba(12, 20, 34, 0.16);
}

.si-company-avatar-actions {
    position: absolute;
    right: 0.2rem;
    bottom: 0.35rem;
    z-index: 3;
}

.si-company-avatar-action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: linear-gradient(180deg, #173f79 0%, #0f2c57 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.22);
}

.si-company-avatar-action-btn:hover,
.si-company-avatar-action-btn:focus,
.si-company-avatar-action-btn:active {
    color: #fff;
    background: linear-gradient(180deg, #1b4a8f 0%, #143565 100%);
}

.si-company-image-menu {
    min-width: 230px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0.55rem;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.si-company-image-menu .dropdown-item {
    border-radius: 12px;
    font-weight: 600;
    color: #1f2937;
    padding: 0.75rem 0.9rem;
    display: flex;
    align-items: center;
}

.si-company-image-menu .dropdown-item:hover,
.si-company-image-menu .dropdown-item:focus,
.si-company-image-menu .dropdown-item:active {
    background: #f8fbff;
    color: #173f79;
}

.si-company-title {
    font-size: clamp(1.9rem, 2.5vw, 2.85rem);
    font-weight: 700;
    color: #0f172a;
}

.si-company-verified {
    font-size: 1.35rem;
}

.si-company-handle {
    font-size: 0.98rem;
    color: #64748b;
    font-weight: 500;
}

.si-company-meta {
    row-gap: 0.9rem;
}

.si-company-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
}

.si-company-meta-item i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
}

.si-company-meta-item strong {
    color: #0f172a;
    font-weight: 700;
    margin-right: 0.3rem;
}

.si-company-tabs-card {
    border-radius: 24px;
    overflow: hidden;
}

.si-company-tabs {
    border-bottom: 1px solid #e5e7eb;
    padding: 0 24px;
    gap: 0.25rem;
    background: #fff;
}

.si-company-tabs .nav-link {
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 1rem 0.85rem;
    color: #6b7280;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.si-company-tabs .nav-link i {
    font-size: 0.98rem;
}

.si-company-tabs .nav-link:hover,
.si-company-tabs .nav-link:focus {
    color: #111827;
}

.si-company-tabs .nav-link.active {
    color: #173f79;
    border-bottom-color: #173f79;
    background: transparent;
}

.si-company-tab-content {
    background: #fff;
}

.si-company-panel {
    padding: 28px 24px 32px;
}

.si-company-section-card,
.si-company-info-card,
.si-company-link-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.si-company-section-header h3 {
    margin-bottom: 0.35rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
}

.si-company-section-header > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 42px;
}

.si-company-section-header p {
    margin-bottom: 0;
    color: #6b7280;
}

.si-company-copy {
    margin-top: 1rem;
    color: #374151;
    line-height: 1.75;
    white-space: normal;
}

.si-company-info-label,
.si-company-link-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    margin-bottom: 0;
}

.si-company-info-value,
.si-company-link-value {
    color: #111827;
    line-height: 1.7;
    font-weight: 500;
}

.si-company-overview-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.si-company-info-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.si-company-info-head > div:last-child {
    display: flex;
    align-items: center;
    min-height: 42px;
}

.si-company-section-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fe 100%);
    border: 1px solid #d8e4f5;
    color: #173f79;
    font-size: 1rem;
    flex: 0 0 auto;
}

.si-company-section-icon--overview {
    width: 48px;
    height: 48px;
    border-radius: 16px;
}

.si-company-info-value--rich {
    padding: 1rem 1rem 0;
    color: #334155;
}

.si-company-info-empty {
    color: #94a3b8;
    font-weight: 500;
}

.si-company-edit-btn {
    border: 1px solid #dbe4f1;
    background: #fff;
    color: #173f79;
    border-radius: 999px;
    padding: 0.75rem 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.si-company-edit-btn:hover {
    color: #173f79;
    background: #f8fbff;
    border-color: #c5d6ee;
}

.si-company-edit-btn:focus,
.si-company-edit-btn:focus-visible,
.si-company-edit-btn:active,
.si-company-avatar-action-btn:focus,
.si-company-avatar-action-btn:focus-visible,
.si-company-avatar-action-btn:active,
.si-company-cover-action-btn:focus,
.si-company-cover-action-btn:focus-visible,
.si-company-cover-action-btn:active,
.si-company-see-more:focus,
.si-company-see-more:focus-visible,
.si-company-see-more:active,
.si-company-save-btn:focus,
.si-company-save-btn:focus-visible,
.si-company-save-btn:active,
.si-company-image-secondary-btn:focus,
.si-company-image-secondary-btn:focus-visible,
.si-company-image-secondary-btn:active,
.si-company-image-picker:focus,
.si-company-image-picker:focus-visible,
.si-company-image-picker:active,
.si-repeater-add-btn:focus,
.si-repeater-add-btn:focus-visible,
.si-repeater-add-btn:active,
.si-repeater-remove:focus,
.si-repeater-remove:focus-visible,
.si-repeater-remove:active,
.si-company-edit-modal .btn-close:focus,
.si-company-edit-modal .btn-close:focus-visible,
.si-company-edit-modal .btn-close:active {
    box-shadow: none !important;
    outline: none !important;
}

.si-company-menu-list,
.si-company-people-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.si-company-menu-item,
.si-company-people-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e8eef7;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.si-company-list-shell {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #edf2f8;
    border-radius: 18px;
    padding: 0.8rem;
}

.si-company-menu-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #173f79;
    margin-top: 0.45rem;
    flex: 0 0 auto;
    box-shadow: 0 0 0 4px rgba(23, 63, 121, 0.08);
}

.si-company-menu-text {
    color: #334155;
    font-weight: 500;
}

.si-company-people-item {
    align-items: center;
    gap: 0.85rem;
}

.si-company-people-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #173f79;
    border: 1px solid #dbeafe;
    flex: 0 0 auto;
}

.si-company-people-name {
    font-weight: 700;
    color: #0f172a;
}

.si-company-people-role {
    color: #64748b;
    font-size: 0.95rem;
}

.si-company-see-more {
    color: #173f79;
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.9rem;
}

.si-company-see-more:hover {
    color: #173f79;
    text-decoration: underline;
}

.si-company-edit-modal-dialog {
    max-width: min(1320px, 96vw);
}

.si-company-edit-modal .modal-content {
    border-radius: 22px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.si-company-image-modal-content {
    border-radius: 24px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.si-company-image-viewer-stage,
.si-company-image-preview-stage {
    min-height: 360px;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #f8fbff 0%, #fdfefe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.si-company-image-viewer-image,
.si-company-image-preview {
    max-width: 100%;
    max-height: 68vh;
    border-radius: 18px;
    object-fit: contain;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.si-company-image-viewer-empty,
.si-company-image-preview-empty {
    text-align: center;
    max-width: 420px;
    color: #64748b;
}

.si-company-image-viewer-empty i,
.si-company-image-preview-empty i {
    font-size: 2.5rem;
    color: #173f79;
    margin-bottom: 0.75rem;
}

.si-company-image-upload-panel,
.si-company-image-preview-panel {
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 1.25rem;
}

.si-company-image-picker {
    width: 100%;
    min-height: 250px;
    border-radius: 20px;
    border: 1px dashed #b6c8e3;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
    color: #173f79;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    text-align: center;
    padding: 1.5rem;
}

.si-company-image-picker:hover {
    border-color: #8facd7;
    background: linear-gradient(180deg, #f5f9ff 0%, #edf5ff 100%);
    color: #173f79;
}

.si-company-image-picker-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #173f79 0%, #214f93 100%);
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 16px 32px rgba(23, 63, 121, 0.2);
}

.si-company-image-picker-title {
    font-size: 1.05rem;
    font-weight: 800;
}

.si-company-image-picker-copy,
.si-company-image-upload-meta {
    color: #64748b;
    line-height: 1.7;
}

.si-company-image-secondary-btn {
    border: 1px solid #dbe4f1;
    background: #fff;
    color: #173f79;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-weight: 700;
}

.si-company-image-secondary-btn:hover,
.si-company-image-secondary-btn:focus,
.si-company-image-secondary-btn:active {
    color: #173f79;
    background: #f8fbff;
    border-color: #c5d6ee;
}

.si-company-edit-loader {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.si-company-edit-nav {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 0.75rem;
    gap: 0.35rem;
    max-height: 70vh;
    overflow-y: auto;
}

.si-company-edit-nav .nav-link {
    text-align: left;
    color: #475569;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.si-company-edit-nav .nav-link.active {
    background: #173f79;
    color: #fff;
}

.si-company-edit-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.si-company-edit-panel h4 {
    margin-bottom: 0.35rem;
    color: #0f172a;
    font-weight: 700;
}

.si-company-field,
.si-company-field:focus,
.si-company-edit-modal .form-control,
.si-company-edit-modal .form-control:focus,
.si-company-edit-modal textarea,
.si-company-edit-modal textarea:focus,
.si-company-edit-modal select,
.si-company-edit-modal select:focus {
    box-shadow: none !important;
}

.si-company-field {
    border-radius: 14px;
    border: 1px solid #dbe4f1;
    padding: 0.85rem 1rem;
}

.si-company-field:focus {
    border-color: #9db7df;
}

.si-company-field.is-invalid,
.si-company-field.is-invalid:focus {
    border-color: #dc2626;
    box-shadow: none !important;
}

.si-company-field-error {
    display: block;
    margin-top: 0.45rem;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}

.si-company-save-btn {
    background: #173f79;
    color: #fff;
    border-radius: 999px;
    padding: 0.8rem 1.25rem;
    font-weight: 700;
}

.si-company-save-btn:hover,
.si-company-save-btn:focus {
    color: #fff;
    background: #123564;
}

.si-repeater-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.si-repeater-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.si-repeater-item .form-control {
    flex: 1 1 auto;
}

.si-repeater-item-people {
    align-items: flex-start;
}

.si-repeater-remove {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    background: #fff;
    flex: 0 0 auto;
}

.si-repeater-remove:hover {
    color: #dc2626;
    background: #fff5f5;
}

.si-repeater-add-btn {
    border-radius: 999px;
    border: 1px dashed #b9cae2;
    color: #173f79;
    font-weight: 700;
    background: #f8fbff;
}

.si-repeater-add-btn:hover {
    color: #173f79;
    border-color: #88a6d4;
    background: #f1f6fd;
}

.si-company-table-head {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr 1.25fr 1.25fr;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: #f8fafc;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.si-company-empty-state {
    border: 1px dashed #d6dbe4;
    border-radius: 18px;
    padding: 40px 24px;
    margin-top: 1.25rem;
    text-align: center;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.si-company-empty-state--soft {
    margin-top: 0;
}

.si-company-empty-state i {
    font-size: 2rem;
    color: #173f79;
    display: inline-flex;
    margin-bottom: 1rem;
}

.si-company-empty-state h4 {
    color: #111827;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.si-company-empty-state p {
    margin-bottom: 0;
    color: #6b7280;
}

.si-company-link-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.si-company-link-card:hover {
    transform: translateY(-3px);
    border-color: #c7d7f1;
    box-shadow: 0 16px 28px rgba(21, 41, 77, 0.08);
}

.si-company-link-arrow {
    margin-top: auto;
    color: #173f79;
    font-size: 1.1rem;
}

.si-company-news-heading {
    color: #0f172a;
    font-size: 1.3rem;
    font-weight: 700;
}

.si-company-news-subheading {
    color: #6b7280;
}

.si-company-news-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.si-company-news-layout {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.si-company-news-media-column {
    width: 320px;
    min-width: 320px;
    padding: 1.15rem;
    border-right: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.si-company-news-actions {
    flex: 0 0 auto;
}

.si-company-news-actions-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.si-company-news-actions-btn:hover,
.si-company-news-actions-btn:focus,
.si-company-news-actions-btn:active {
    color: #173f79;
    background: #f8fbff;
    border-color: #d6e1f1;
}

.si-company-news-media,
.si-company-news-title-btn,
.si-company-news-readmore,
.si-company-news-viewbtn {
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
}

.si-company-news-media {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 16px;
}

.si-company-news-image,
.si-company-news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.si-company-news-image {
    object-fit: cover;
    transition: transform 0.35s ease;
}

.si-company-news-card:hover .si-company-news-image {
    transform: scale(1.03);
}

.si-company-news-image-placeholder {
    background: linear-gradient(180deg, #edf4ff 0%, #f7fbff 100%);
    color: #173f79;
    font-size: 2.2rem;
}

.si-company-news-body {
    padding: 1.15rem 1.15rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 220px;
}

.si-company-news-meta {
    margin-bottom: 0.65rem;
    color: #64748b;
    font-size: 0.86rem;
    font-weight: 600;
}

.si-company-news-caption {
    margin-top: 0.75rem;
    color: #6b7280;
    font-size: 0.88rem;
    line-height: 1.6;
    font-weight: 500;
}

.si-company-news-title-btn {
    margin-bottom: 0.65rem;
}

.si-company-news-title {
    margin: 0;
    color: #111827;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.45;
}

.si-company-news-title-btn:hover .si-company-news-title,
.si-company-news-title-btn:focus .si-company-news-title,
.si-company-news-title-btn:active .si-company-news-title {
    color: #173f79;
}

.si-company-news-excerpt {
    color: #475569;
    line-height: 1.75;
    overflow: hidden;
}

.si-company-news-readmore,
.si-company-news-viewbtn {
    color: #173f79;
    font-weight: 800;
    text-decoration: none;
}

.si-company-news-load-more {
    min-width: 210px;
    justify-content: center;
}

.si-company-news-readmore:hover,
.si-company-news-readmore:focus,
.si-company-news-readmore:active,
.si-company-news-viewbtn:hover,
.si-company-news-viewbtn:focus,
.si-company-news-viewbtn:active,
.si-company-news-title-btn:focus,
.si-company-news-title-btn:active,
.si-company-news-media:focus,
.si-company-news-media:active,
.si-company-news-preview-clear:focus,
.si-company-news-preview-clear:focus-visible,
.si-company-news-preview-clear:active,
.si-company-news-image-picker:focus,
.si-company-news-image-picker:focus-visible,
.si-company-news-image-picker:active {
    box-shadow: none !important;
    outline: none !important;
}

.si-company-news-modal-content {
    border-radius: 24px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.si-company-news-detail-empty {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #64748b;
}

.si-company-news-detail-empty i {
    font-size: 2.5rem;
    color: #173f79;
    margin-bottom: 0.8rem;
}

.si-company-news-detail-article {
    max-width: 920px;
    margin: 0 auto;
}

.si-company-news-detail-figure {
    margin: 0;
}

.si-company-news-detail-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.si-company-news-detail-caption {
    margin-top: 0.75rem;
    color: #64748b;
    font-size: 0.92rem;
    text-align: center;
}

.si-company-news-detail-meta {
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 600;
}

.si-company-news-detail-title {
    color: #0f172a;
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.si-company-news-detail-copy {
    color: #334155;
    line-height: 1.85;
    font-size: 1rem;
}

.si-company-news-form-panel {
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 1.3rem;
}

.si-company-news-label {
    color: #0f172a;
    font-weight: 700;
}

.si-company-news-field,
.si-company-news-field:focus {
    border-radius: 14px;
    border: 1px solid #dbe4f1;
    padding: 0.85rem 1rem;
    box-shadow: none !important;
}

.si-company-news-field:focus {
    border-color: #9db7df;
}

.si-company-news-image-picker {
    width: 100%;
    min-height: 190px;
    border-radius: 20px;
    border: 1px dashed #b6c8e3;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
    color: #173f79;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    text-align: center;
    padding: 1.35rem;
}

.si-company-news-image-picker:hover {
    color: #173f79;
    border-color: #8facd7;
    background: linear-gradient(180deg, #f5f9ff 0%, #edf5ff 100%);
}

.si-company-news-dropzone {
    border-radius: 20px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.si-company-news-dropzone.is-dragover .si-company-news-image-picker {
    border-color: #173f79;
    background: linear-gradient(180deg, #eef5ff 0%, #e9f2ff 100%);
    box-shadow: 0 0 0 4px rgba(23, 63, 121, 0.08);
    transform: translateY(-1px);
}

.si-company-news-image-picker-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #173f79 0%, #214f93 100%);
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 16px 32px rgba(23, 63, 121, 0.2);
}

.si-company-news-image-picker-title {
    font-size: 1.02rem;
    font-weight: 800;
}

.si-company-news-image-picker-copy,
.si-company-news-image-meta {
    color: #64748b;
    line-height: 1.7;
}

.si-company-news-preview-shell {
    position: relative;
    min-height: 280px;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #f8fbff 0%, #fdfefe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    overflow: hidden;
}

.si-company-news-preview-clear {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dbe4f1;
    background: rgba(255, 255, 255, 0.95);
    color: #173f79;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.si-company-news-preview-clear:hover,
.si-company-news-preview-clear:focus,
.si-company-news-preview-clear:active {
    color: #173f79;
    background: #fff;
}

.si-company-news-preview-empty {
    text-align: center;
    max-width: 330px;
    color: #64748b;
}

.si-company-news-preview-empty i {
    font-size: 2.3rem;
    color: #173f79;
    margin-bottom: 0.75rem;
}

.si-company-news-preview-image {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

@media (max-width: 991.98px) {
    .si-company-head {
        margin-top: -28px;
    }

    .si-company-cover {
        min-height: 220px;
    }

    .si-company-avatar-wrap {
        margin-top: -58px;
    }

    .si-company-cover-actions {
        top: 1rem;
        right: 1rem;
    }

    .si-company-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .si-company-edit-nav {
        max-height: none;
    }

    .si-company-news-media-column {
        width: 270px;
        min-width: 270px;
    }

    .si-company-news-body {
        min-height: 220px;
    }
}

@media (max-width: 767.98px) {
    .si-company-cover {
        min-height: 200px;
        border-radius: 18px;
    }

    .si-company-cover-actions {
        left: 1rem;
        right: 1rem;
    }

    .si-company-cover-action-btn {
        width: 100%;
        justify-content: center;
    }

    .si-company-head {
        border-radius: 0 0 18px 18px;
    }

    .si-company-avatar {
        width: 88px;
        height: 88px;
    }

    .si-company-image-viewer-stage,
    .si-company-image-preview-stage {
        min-height: 260px;
    }

    .si-company-panel {
        padding: 22px 16px 24px;
    }

    .si-company-tabs {
        padding: 0 12px;
    }

    .si-company-section-card,
    .si-company-info-card,
    .si-company-link-card {
        padding: 18px;
    }

    .si-company-news-layout {
        flex-direction: column;
    }

    .si-company-news-media-column {
        width: 100%;
        min-width: 0;
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
        padding: 1rem 1rem 0.85rem;
    }

    .si-company-news-media {
        height: 200px;
    }

    .si-company-news-body {
        min-height: auto;
        padding: 1rem;
    }

    .si-company-news-caption {
        margin-top: 0.65rem;
        font-size: 0.84rem;
    }

    .si-company-news-form-panel,
    .si-company-news-modal-content {
        border-radius: 20px;
    }

    .si-company-news-preview-shell {
        min-height: 240px;
    }
}
