/*
Theme Name: BrightSecur Theme
Theme URI: http://example.com/brightsecur-theme
Author: Antigravity
Author URI: http://example.com
Description: Custom theme with editable colors, fonts, and images.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brightsecur
*/

/* --- Reset and Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FFFFFF;
    color: #474A5D;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ul {
    list-style: none;
} */

.container {
/*     max-width: 1220px; */
	max-width: 1248px;
    margin: 0 auto;
/*     padding: 0 40px; */
}

/* --- Navigation Fixes --- */
#menu-item-3377 {
    display: none !important;
}

.header {
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* --- Hero Section --- */
.hero {
    background-color: #FFFFFF;
    padding: 60px 0 50px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    max-width: 550px;
}

.hero-title {
    font-size: 36px;
    font-weight: 900;
    color: #474A5D;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 16px;
    color: #474A5D;
    line-height: 1.7;
    font-weight: 400;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.btn-demo2 {
    background: #E784D5;
    border-radius: 12px;
    color: #fff;
    width: 100% !important;
    padding: 8px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    font-weight: bold;
}

.nav-right.desktop-nav2 {
    margin-top: 20px;
}

/* --- Logo Slider Section --- */
.logo-slider {
    background-color: #FFFFFF;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 100px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.slide img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.slide img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Comparison Section --- */
.container1 {
    max-width: 1200px;
    margin: 0 auto;
}

.header1 {
    text-align: center;
    padding-bottom: 60px;
}

.main-title {
    color: #474A5D;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.description {
    color: #757785;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5;
}

.impact-text {
    color: #474A5D;
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
    line-height: 1.5;
}

.comparison-box {
    border: 5px solid #F0BAE7;
    border-radius: 24px;
    padding: 40px;
    background-color: #ffffff;
    position: relative;
}

.comparison-header {
    background-color: #F0BAE7;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    margin: 0 auto 40px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%) !important;
}

.comparison-section {
    margin-bottom: 60px;
    padding-bottom: 0;
}

.comparison-section:first-of-type {
    padding-top: 0;
    border-top: none;
}

.comparison-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    color: #474A5D;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding: 20px;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 5px;
    background-color: #F0BAE7;
}

.section-title::before {
    left: -40px;
    width: calc(50% - 280px);
}

.section-title::after {
    right: -40px;
    width: calc(50% - 280px);
}

.section-title.no-lines::before,
.section-title.no-lines::after {
    display: none;
}

.feature-row {
    margin-bottom: 18px;
}

.feature-row-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    background-color: #F1F4F7;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-row:not(:has(.brand-header)) .feature-row-wrapper:hover {
    background: linear-gradient(90deg, rgba(230, 132, 205, 1) 0%, rgba(229, 160, 161, 1) 50%, rgba(228, 136, 121, 1) 100%);
    box-shadow: 0 6px 16px rgba(230, 132, 205, 0.3);
}

.feature-row:not(:has(.brand-header)) .feature-row-wrapper:hover .feature-item {
    color: #ffffff;
}

.feature-item {
    background-color: transparent;
    color: #757785;
    font-size: 20px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item-left {
    border-right: 2px solid #757785;
}

.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
    padding: 20px 0;
    background-color: transparent;
    border: none;
}

.brand-header-left {
    border-right: 2px solid #757785;
}

.brand-logo {
    width: 137px;
    height: auto;
    object-fit: contain;
}

.feature-row-single .feature-row-wrapper {
    background-color: transparent;
    display: block;
}

.feature-row-single .feature-item {
    background-color: #F1F4F7;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: calc(50% - 20px);
}

.feature-item-only:hover {
    background: linear-gradient(90deg, rgba(230, 132, 205, 1) 0%, rgba(229, 160, 161, 1) 50%, rgba(228, 136, 121, 1) 100%);
    box-shadow: 0 6px 16px rgba(230, 132, 205, 0.3);
    color: #ffffff;
}

/* --- Mobile Comparison --- */
.comparison-box-mobile {
    display: none;
}

.mobile-section {
    margin-bottom: 40px;
}

.mobile-brand-group {
    margin-bottom: 24px;
    background-color: #F1F4F7;
    padding: 16px;
    border-radius: 12px;
}

.mobile-brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-bottom: 16px;
}

.mobile-brand-logo {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.mobile-feature-item {
    background-color: #FFFFFF;
    color: #757785;
    font-size: 15px;
    font-weight: 500;
    padding: 16px;
    border-radius: 12px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 12px;
}

/* --- Operational Outcomes Table --- */
.outcomes-section {
    margin-top: 80px;
}

.outcomes-title {
    color: #474A5D;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.outcomes-table {
    border: 2px solid #D1D2D6;
    border-radius: 24px;
    overflow: hidden;
    background-color: #ffffff;
}

.outcomes-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #F1F4F7;
    border-bottom: 2px solid #D1D5DB;
}

.outcomes-header-cell {
    padding: 24px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #757785;
    border-right: 2px solid #D1D5DB;
}

.outcomes-header-cell:last-child {
    border-right: none;
}

.outcomes-header-cell:first-child {
    text-align: left;
}

.outcomes-header-cell img {
    width: 100px;
    height: auto;
}

.outcomes-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 2px solid #D1D5DB;
}

.outcomes-row:last-child {
    border-bottom: none;
}

.outcomes-row:nth-child(odd) {
    background-color: #F1F4F7;
}

.outcomes-row:nth-child(even) {
    background-color: #ffffff;
}

.outcomes-cell {
    padding: 24px;
    font-size: 18px;
    color: #474A5D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #D1D5DB;
}

.outcomes-cell:last-child {
    border-right: none;
}

.outcomes-cell:first-child {
    font-weight: 600;
    justify-content: flex-start;
}

.outcomes-cell.pink-bg {
    background-color: #F4CCED;
    font-weight: 600;
}

.outcomes-cell.yellow-bg {
    background-color: #EFE2A0;
    font-weight: 600;
}

.outcomes-table-mobile {
    display: none;
}

/* --- Teams Choose Section --- */
.teams-section {
    margin-top: 80px;
}

.teams-title {
    color: #474A5D;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.teams-subtitle {
    color: #757785;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 48px;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.teams-grid.two-items {
    grid-template-columns: repeat(2, 1fr);
}

.teams-grid.one-item {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.teams-card {
    background-color: #F1F4F7;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.teams-card:hover {
    background: linear-gradient(90deg, rgba(230, 132, 205, 1) 0%, rgba(229, 160, 161, 1) 50%, rgba(228, 136, 121, 1) 100%);
    box-shadow: 0 6px 16px rgba(230, 132, 205, 0.3);
}

.teams-card-text {
    color: #474A5D;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.teams-card:hover .teams-card-text {
    color: #ffffff;
}

/* --- Summary Section --- */
.summary-section {
    margin-top: 80px;
    text-align: center;
}

.summary-title {
    color: #474A5D;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 32px;
}

.summary-text {
    color: #757785;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Book a Demo Section --- */
.demo-section {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.demo-form-wrapper {
    background-color: #2F3551;
    padding: 40px;
    border-radius: 24px;
    height: 420px;
}

.demo-title {
    color: #474A5D;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.demo-description {
    color: #757785;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 40px;
}

.clients-label {
    color: #757785;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    align-items: center;
}

.client-logo {
    height: 40px;
    object-fit: contain;
    width: 100%;
}

/* --- Learn More Section --- */
.learn-section {
    margin-top: 80px;
}

.learn-title {
    color: #474A5D;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.learn-description {
    color: #757785;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 900px;
}

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

.blog-card {
    background-color: #F1F4F7;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 6px solid transparent;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: #E784D5;
}

.card-image {
    width: 100%;
    height: 200px;
    background-color: #7E8491;
    border-radius: 20px;
    margin: 10px;
    width: calc(100% - 20px);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-tag {
    background-color: #E784D5;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-date {
    color: #A3A5AE;
    font-size: 12px;
    font-weight: 400;
}

.card-title {
    color: #474A5D;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-text {
    color: #757785;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-button {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background-color: #E784D5;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.card-button:hover {
    background-color: #E56FC9;
    box-shadow: 0 6px 16px rgba(231, 132, 213, 0.3);
    transform: translateY(-2px);
}

/* --- Footer Section --- */
.footer-section {
    background-image: url('https://brightsecurdev.wpenginepowered.com/wp-content/uploads/2025/12/Subtract.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 0;
    margin-top: 80px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
/*     gap: 60px; */
	gap: 20px;
    align-items: center;
    padding: 90px 20px 80px;
}

.footer-content {
    color: #FFFFFF;
}

.footer-title {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.footer-description {
    color: #FCFCFD;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
}

.footer-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-btn-primary {
    background-color: #E25BC5;
    color: #FFFFFF;
    border: none;
}

.footer-btn-primary:hover {
    background-color: #D04AB4;
    box-shadow: 0 6px 16px rgba(226, 91, 197, 0.4);
    transform: translateY(-2px);
}

.footer-btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #E25BC5;
    display: none;
}

.footer-btn-secondary:hover {
    background-color: rgba(226, 91, 197, 0.1);
}

.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
/*     gap: 24px; */
	gap: 15px;
    flex-wrap: wrap;
}

.footer-logo-item {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo-item.small {
    height: 50px;
}

/* --- Footer Menu Section --- */
.footer-menu-section {
    background-color: #2F3551;
    padding: 60px 20px 40px;
    width: 100%;
}

.footer-menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-menu-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(219, 222, 235, 0.2);
    margin-bottom: 40px;
}

.footer-menu-column h3 {
    color: #E0C550;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-menu-column ul li {
    margin-bottom: 12px;
}

.footer-menu-column ul li a {
    color: #DBDEEB;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu-column ul li a:hover {
    color: #FFFFFF;
}

.footer-newsletter h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px 0 0 8px;
    background-color: #262B45;
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.newsletter-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 0 8px 8px 0;
    background-color: #E0C550;
    color: #2F3551;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-disclaimer {
    color: rgba(252, 252, 253, 0.5);
    font-size: 8px !important;
    line-height: 1.5;
}

.footer-menu-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo-bottom {
    height: 30px;
    width: auto;
}

.footer-copyright {
    color: #DBDEEB;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links .separator {
    color: #E0C550;
    font-size: 16px;
}

.footer-bottom-links .separator.red {
    color: #DE6143;
}

.footer-bottom-links .separator.pink {
    color: #E25BC5;
}

.footer-bottom-links a {
    color: #DBDEEB;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.c-top-bar.header__top-bar {
    display: none;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        gap: 50px;
    }

    .comparison-section {
        padding: 60px 0;
    }

    .comparison-intro h2 {
        font-size: 32px;
    }

    .comparison-card-title {
        font-size: 28px;
    }

    .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
	


    /* Mobile General */
    .container {
        padding: 0 20px;
    }

    /* Hero */
    .hero {
        padding: 30px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-left {
        order: 2;
        width: 100%;
    }

    .hero-right {
        order: 1;
        justify-content: center;
    }

    .hero-title {
        font-size: 24px;
    }

    /* Comparison Mobile */
    .comparison-box {
        display: none;
    }

    .comparison-box-mobile {
        display: block;
        border: none;
        padding: 24px 16px;
        background-color: #ffffff;
    }

    .mobile-feature-item {
        font-size: 14px;
    }

    /* Outcomes Mobile */
    .outcomes-table {
        display: none;
    }

    .outcomes-table-mobile {
        display: block;
    }

    /* Teams Mobile */
    .teams-grid {
        grid-template-columns: 1fr;
    }

    .teams-grid.two-items,
    .teams-grid.one-item {
        grid-template-columns: 1fr;
    }

    /* Demo Mobile */
    .demo-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
    }

    .demo-content {
        order: -1;
    }

    .clients-grid {
        display: none;
    }

    .clients-label {
        display: none;
    }

    /* Learn More Mobile */
    .cards-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        padding: 60px 16px 50px;
    }

    .footer-content {
        order: 1;
        padding-top: 64px;
    }

    .footer-logos {
        order: 2;
    }

    .footer-buttons {
        flex-direction: column;
    }

    .footer-menu-section {
        padding: 40px 16px 30px;
    }

    .footer-menu-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-newsletter {
        grid-column: span 2;
        order: -1;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .footer-menu-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left {
        flex-direction: column;
        width: 100%;
    }

    .footer-copyright {
        order: 2;
    }

    .footer-bottom-links {
        order: 3;
        flex-direction: column;
    }

    .footer-social-icons {
        order: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 20px;
    }

    .main-title {
        font-size: 24px;
    }

    .comparison-header {
        position: relative !important;
        transform: translateX(-50%) !important;
    }
}
input#wpforms-5806-field_11 {
    width: 295px !important;
    max-width: 100% !important;
}
.job-meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: Inter, sans-serif;
}

.job-badge {
    display: inline-block;
    background: #F4C7B5;
    color: #5B2D24;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    width: fit-content;
}

.job-info {
    display: flex !important;
    gap: 40px;
}

.job-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5F5F5F;
    font-size: 15px;
}
form#wpforms-form-5806 {
    background: #2f2f35;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
}
form#wpforms-form-5806 label {
    color: white !important;
}

::marker {
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-indent: 0px !important;
    text-align: start !important;
    text-align-last: auto !important;
}