/* ── Hero ──────────────────────────────────────────────────── */
.cr-hero {
    background:
        radial-gradient(ellipse at top left, rgb(13 143 208 / 18%) 0%, transparent 45%),
        radial-gradient(ellipse at top right, rgb(217 111 13 / 20%) 0%, transparent 45%),
        radial-gradient(ellipse at bottom left, rgb(11 101 147 / 12%) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgb(131 67 6 / 14%) 0%, transparent 40%),
        linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 30%, #1a2030 60%, var(--dark-bg-primary) 100%);
    padding: 80px 0 88px;
    position: relative;
    overflow: hidden;
}

.cr-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 12% 25%, rgba(13, 159, 232, .09), transparent),
        radial-gradient(1px 1px at 88% 22%, rgba(237, 131, 33, .08), transparent),
        radial-gradient(1px 1px at 22% 75%, rgba(13, 159, 232, .06), transparent),
        radial-gradient(1px 1px at 74% 78%, rgba(237, 131, 33, .09), transparent);
    background-size: 480px 380px;
    animation: crHeroFloat 22s ease-in-out infinite;
    pointer-events: none;
}

@keyframes crHeroFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    33%       { transform: translateX(-8px) translateY(-5px); }
    66%       { transform: translateX(6px) translateY(-9px); }
}

.cr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

/* Breadcrumb */
.tg-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tg-breadcrumb a {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    transition: color .2s;
}

.tg-breadcrumb a:hover {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.tg-breadcrumb .tg-bc-sep {
    color: rgba(255, 255, 255, .2);
}

.tg-breadcrumb .tg-bc-current {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
}

.cr-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -.3px;
}

.cr-hero-tagline {
    font-size: 17px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.65;
    margin: 0;
    /*max-width: 560px;*/
}

/* ── Intro ──────────────────────────────────────────────────── */
.cn-intro {
    padding: 72px 0;
    background: #fff;
    border-bottom: 1px solid #f0f2f5;
}

.cn-intro-inner {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 64px;
    align-items: center;
}

.cn-intro-text p {
    font-size: 16px;
    color: var(--text-secondary, #6c757d);
    line-height: 1.8;
    margin: 0 0 18px;
}

.cn-intro-text p:last-child {
    margin: 0;
}

.cn-intro-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cn-intro-services span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-primary, #0f1419);
    padding: 10px 16px;
    border: 1px solid #f0f2f5;
    border-radius: 10px;
    background: #fafbfc;
}

.cn-intro-services span i {
    font-size: 13px;
    color: #0d9fe8;
    width: 16px;
    flex-shrink: 0;
}

.cn-intro-services span:nth-child(even) i {
    color: #ed8321;
}

@media (max-width: 768px) {
    .cn-intro-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ── Shared section helpers ─────────────────────────────────── */
.cn-section-header { margin-bottom: 50px; }
.cn-section-header.cn-centered { text-align: center; }
.cn-section-header.cn-centered .cn-section-sub { margin: 0 auto; }

.cn-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary, #0f1419);
    margin: 0 0 12px;
    line-height: 1.2;
}

.cn-section-sub {
    font-size: 16px;
    color: var(--text-secondary, #6c757d);
    line-height: 1.65;
    margin: 0;
    /*max-width: 520px;*/
}

/* ── 1. Why Join ────────────────────────────────────────────── */
.cn-why {
    padding: 88px 0;
    padding-top: 50px;
    background: #f8f9fa;
}

.cn-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.cn-why-card {
    padding: 36px 32px;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease, box-shadow .25s ease;
}

.cn-why-card.cn-visible {
    opacity: 1;
    transform: translateY(0);
}

.cn-why-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
}

.cn-why-card.cn-visible:hover {
    transform: translateY(-4px);
}

.cn-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 22px;
}

.cn-icon-blue   { background: rgba(13, 159, 232, .1); color: #0d9fe8; }
.cn-icon-orange { background: rgba(237, 131, 33, .1); color: #ed8321; }

.cn-why-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary, #0f1419);
    margin: 0 0 10px;
}

.cn-why-desc {
    font-size: 14px;
    color: var(--text-secondary, #6c757d);
    line-height: 1.75;
    margin: 0 0 22px;
}

/* Tech badges */
.cn-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cn-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1px;
}

.cn-badge-blue   { background: rgba(13, 159, 232, .09); color: #0d9fe8; }
.cn-badge-orange { background: rgba(237, 131, 33, .09); color: #ed8321; }

/* Bullet list */
.cn-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cn-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    color: var(--text-secondary, #6c757d);
    line-height: 1.5;
}

.cn-why-list li i {
    font-size: 11px;
    color: #0d9fe8;
    margin-top: 3px;
    flex-shrink: 0;
}

.cn-why-card:nth-child(2) .cn-why-list li i { color: #ed8321; }

.cn-why-footnote {
    margin: 18px 0 0;
    font-size: 13px;
    color: rgba(15, 20, 25, .35);
    font-style: italic;
    line-height: 1.5;
    padding-top: 16px;
    border-top: 1px solid #f0f2f5;
}

/* ── 3. Open Positions ──────────────────────────────────────── */
.cn-positions {
    padding: 88px 0;
    background: #f8f9fa;
}

/* ── Job board plugin overrides (scoped to .tg-jobs-wrap) ───── */
.tg-jobs-wrap * {
    font-family: 'Manrope', sans-serif !important;
    box-sizing: border-box !important;
}

.tg-jobs-wrap .v1 { position: relative !important; }

.tg-jobs-wrap .sjb-page {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.tg-jobs-wrap .sjb-listing {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.tg-jobs-wrap .list-view {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.tg-jobs-wrap .sjb-filters {
    background: #fff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 14px !important;
    padding: 16px 20px !important;
    margin-bottom: 28px !important;
    box-shadow: none !important;
    display: none !important;
}

.tg-jobs-wrap .sjb-filters .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-end !important;
    gap: 10px !important;
    margin: 0 !important;
}

.tg-jobs-wrap .sjb-search-keywords,
.tg-jobs-wrap .sjb-search-categories,
.tg-jobs-wrap .sjb-search-job-type,
.tg-jobs-wrap .sjb-search-location,
.tg-jobs-wrap .sjb-search-button {
    float: none !important;
    padding: 0 !important;
    width: auto !important;
}

.tg-jobs-wrap .sjb-search-keywords { flex: 2 !important; min-width: 180px !important; }
.tg-jobs-wrap .sjb-search-categories,
.tg-jobs-wrap .sjb-search-job-type,
.tg-jobs-wrap .sjb-search-location  { flex: 1 !important; min-width: 130px !important; }
.tg-jobs-wrap .sjb-search-button    { flex-shrink: 0 !important; }
.tg-jobs-wrap .form-group           { margin-bottom: 0 !important; }

.tg-jobs-wrap .sjb-search-keywords .form-control {
    width: 100% !important;
    border: 1px solid #e9ecef !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #0f1419 !important;
    background: #f8f9fa !important;
    box-shadow: none !important;
    outline: none !important;
    height: auto !important;
    line-height: 1.5 !important;
}

.tg-jobs-wrap .sjb-search-keywords .form-control:focus {
    border-color: #0d9fe8 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.tg-jobs-wrap .sjb-search-keywords .form-control::placeholder { color: #adb5bd !important; }

.tg-jobs-wrap .sjb-search-categories .form-control,
.tg-jobs-wrap .sjb-search-job-type .form-control,
.tg-jobs-wrap .sjb-search-location .form-control {
    width: 100% !important;
    border: 1px solid #e9ecef !important;
    border-radius: 10px !important;
    padding: 10px 36px 10px 14px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #495057 !important;
    background-color: #f8f9fa !important;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236c757d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
    outline: none !important;
    height: auto !important;
    line-height: 1.5 !important;
    cursor: pointer !important;
}

.tg-jobs-wrap .sjb-search-categories .form-control:focus,
.tg-jobs-wrap .sjb-search-job-type .form-control:focus,
.tg-jobs-wrap .sjb-search-location .form-control:focus {
    border-color: #0d9fe8 !important;
    background-color: #fff !important;
    box-shadow: none !important;
}

.tg-jobs-wrap .btn-search {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
    border: none !important;
    background: #0d9fe8 !important;
    color: transparent !important;
    font-size: 0 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.tg-jobs-wrap .btn-search::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    color: #fff !important;
}

.tg-jobs-wrap .btn-search:hover { background: #0b8fd4 !important; }

/* Job card */
.tg-jobs-wrap .list-data {
    background: #fff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: border-color .25s ease, box-shadow .25s ease !important;
    opacity: 0;
    transform: translateY(16px);
}

.tg-jobs-wrap .list-data.cn-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.tg-jobs-wrap .list-data:hover {
    border-color: #0d9fe8 !important;
    box-shadow: 0 6px 24px rgba(13, 159, 232, .09) !important;
}

.tg-jobs-wrap .company-logo { display: none !important; }

.tg-jobs-wrap .list-data header {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.tg-jobs-wrap .list-data header > .row { display: block !important; margin: 0 !important; }
.tg-jobs-wrap .list-data header .col-md-1  { display: none !important; }
.tg-jobs-wrap .list-data header .col-md-11 {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    display: block !important;
}

.tg-jobs-wrap .sjb-list-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding: 20px !important;
    margin: 0 !important;
    width: 100% !important;
}

.tg-jobs-wrap .sjb-list-row > .col-md-5 {
    float: none !important;
    padding: 0 !important;
    width: 100% !important;
    flex: none !important;
    order: 1 !important;
    margin-bottom: 10px !important;
    padding-right: 200px !important;
}

.tg-jobs-wrap .sjb-list-row > .col-md-2,
.tg-jobs-wrap .sjb-list-row > .col-md-3 {
    float: none !important;
    padding: 0 !important;
    width: auto !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    order: 2 !important;
    margin-right: 8px !important;
}

.tg-jobs-wrap .job-info           { display: block !important; }
.tg-jobs-wrap .job-info h4        { margin: 0 !important; font-size: 16px !important; font-weight: 700 !important; line-height: 1.3 !important; }
.tg-jobs-wrap .job-info h4 a      { text-decoration: none !important; color: #0f1419 !important; display: block !important; transition: color .2s !important; }
.tg-jobs-wrap .job-info h4 a:hover { color: #0d9fe8 !important; }
.tg-jobs-wrap .job-title          { font-size: 16px !important; font-weight: 700 !important; color: #0f1419 !important; }
.tg-jobs-wrap .company-name       { display: none !important; }

.tg-jobs-wrap .job-type,
.tg-jobs-wrap .job-location,
.tg-jobs-wrap .job-date {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 5px 13px !important;
    border-radius: 100px !important;
    white-space: nowrap !important;
    border: none !important;
    line-height: 1 !important;
}

.tg-jobs-wrap .job-type     { background: rgba(13, 159, 232, .09) !important; color: #0d9fe8 !important; }
.tg-jobs-wrap .job-location { background: rgba(237, 131, 33, .09) !important; color: #ed8321 !important; }
.tg-jobs-wrap .job-date     { background: #f4f6f8 !important; color: #6c757d !important; }
.tg-jobs-wrap .job-type i,
.tg-jobs-wrap .job-location i,
.tg-jobs-wrap .job-date i   { font-size: 11px !important; }

.tg-jobs-wrap .job-description {
    padding: 20px !important;
    border-top: 1px solid #f4f6f8 !important;
    padding-top: 18px !important;
    background: transparent !important;
}

.tg-jobs-wrap .job-description p {
    font-size: 14px !important;
    color: #6c757d !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.tg-jobs-wrap .sjb_more_content {
    display: none !important;
    padding: 16px 28px !important;
    font-size: 14px !important;
    color: #6c757d !important;
    line-height: 1.7 !important;
    border-top: 1px solid #f4f6f8 !important;
    background: transparent !important;
}

.tg-jobs-wrap .sjb_more_content[style*="display: block"],
.tg-jobs-wrap .sjb_more_content[style*="display:block"] { display: block !important; }

.tg-jobs-wrap .job-features h3 {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .5px !important;
    color: #0f1419 !important;
    margin: 16px 0 10px !important;
}

.tg-jobs-wrap .job-features .table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
}

.tg-jobs-wrap .job-features .table td {
    padding: 9px 12px !important;
    font-size: 13px !important;
    border: none !important;
    border-bottom: 1px solid #f4f6f8 !important;
    color: #495057 !important;
    background: transparent !important;
}

.tg-jobs-wrap .job-features .table td:first-child {
    font-weight: 700 !important;
    color: #0f1419 !important;
    width: 40% !important;
}

.tg-jobs-wrap .job-features .table tr:last-child td { border-bottom: none !important; }

.tg-jobs-wrap .sjb-apply-now-btn {
    position: absolute !important;
    top: 24px !important;
    right: 28px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.tg-jobs-wrap .sjb-apply-now-btn > p {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
}

.tg-jobs-wrap .sjb-apply-now-btn > p:empty { display: none !important; }
.tg-jobs-wrap .sjb-view-less-btn           { display: none !important; }

.tg-jobs-wrap .sjb-apply-now-btn .btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 22px !important;
    border-radius: 100px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    line-height: 1 !important;
    box-shadow: none !important;
    outline: none !important;
    transition: all .2s ease !important;
}

.tg-jobs-wrap .sjb-apply-now-btn .btn-primary {
    background: transparent !important;
    color: #495057 !important;
    border: 1.5px solid #dee2e6 !important;
}

.tg-jobs-wrap .sjb-apply-now-btn .btn-primary:hover {
    border-color: #0d9fe8 !important;
    color: #0d9fe8 !important;
    background: transparent !important;
}

.tg-jobs-wrap .sjb_view_more_btn,
.tg-jobs-wrap .sjb_view_less_btn {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #0d9fe8 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    display: inline-block !important;
}

.tg-jobs-wrap .sjb_view_more_btn:hover,
.tg-jobs-wrap .sjb_view_less_btn:hover { text-decoration: underline !important; }

.tg-jobs-wrap .clearfix::after { content: ''; display: table; clear: both; }

/* View All Openings */
.cn-jobs-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #e9ecef;
}

.cn-jobs-count {
    font-size: 13px;
    color: #adb5bd;
    font-weight: 500;
    margin: 0;
}

.cn-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 100px;
    background: #0f1419;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .1px;
    transition: background .2s ease, transform .2s ease;
}

.cn-view-all-btn:hover {
    background: #0d9fe8;
    transform: translateX(2px);
    color: #fff;
    text-decoration: none;
}

.cn-view-all-btn i { font-size: 12px; transition: transform .2s ease; }
.cn-view-all-btn:hover i { transform: translateX(3px); }

/* ── 2. Who We're Looking For ───────────────────────────────── */
.cn-roles {
    padding: 88px 0;
    background: #fff;
    padding-top: 60px;
}

.cn-roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cn-role-card {
    padding: 28px 24px;
    border: 1px solid #f0f2f5;
    border-radius: 14px;
    background: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease, border-color .25s ease, box-shadow .25s ease;
}

.cn-role-card.cn-visible {
    opacity: 1;
    transform: translateY(0);
}

.cn-role-card:hover {
    border-color: #dee2e6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
    transform: translateY(-3px);
}

.cn-role-card.cn-visible:hover { transform: translateY(-3px); }

.cn-role-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}

/* alternate icon colors: 1,3,5,7 blue | 2,4,6,8 orange */
.cn-role-card:nth-child(odd)  .cn-role-icon { background: rgba(13, 159, 232, .1); color: #0d9fe8; }
.cn-role-card:nth-child(even) .cn-role-icon { background: rgba(237, 131, 33, .1); color: #ed8321; }

.cn-role-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-primary, #0f1419);
    margin: 0 0 6px;
    line-height: 1.35;
}

.cn-role-stack {
    font-size: 12.5px;
    color: var(--text-secondary, #6c757d);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* ── CTA ────────────────────────────────────────────────────── */
section.cta-section {
    background: #f8f9fa !important;
    padding-top: 60px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cn-why-grid   { grid-template-columns: repeat(2, 1fr); }
    .cn-roles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .cn-why-grid { grid-template-columns: 1fr; }
    .cn-hero-title { font-size: 2.4rem; }
    .cn-hero-tagline { font-size: 15px; }

    .tg-jobs-wrap .sjb-filters .row { flex-direction: column !important; }

    .tg-jobs-wrap .sjb-search-keywords,
    .tg-jobs-wrap .sjb-search-categories,
    .tg-jobs-wrap .sjb-search-job-type,
    .tg-jobs-wrap .sjb-search-location { width: 100% !important; flex: none !important; }

    .tg-jobs-wrap .sjb-search-button,
    .tg-jobs-wrap .btn-search { width: 100% !important; border-radius: 10px !important; height: 42px !important; }

    .tg-jobs-wrap .sjb-list-row { padding: 16px !important; }
    .tg-jobs-wrap .sjb-list-row > .col-md-5 { padding-right: 0 !important; margin-bottom: 10px !important; }
    .tg-jobs-wrap .sjb-apply-now-btn { position: static !important; margin: 16px 0 0 !important; }
    .tg-jobs-wrap .sjb-apply-now-btn .btn { flex: 1 !important; justify-content: center !important; }
    .tg-jobs-wrap .job-description,
    .tg-jobs-wrap .sjb_more_content { padding: 16px !important; }
}

@media (max-width: 540px) {
    .cn-hero { padding: 60px 0 68px; }
    .cn-hero-title { font-size: 1.9rem; }
    .cn-why-grid   { grid-template-columns: 1fr; }
    .cn-roles-grid { grid-template-columns: 1fr; }

    .tg-jobs-wrap .job-description p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
