/* ===== HOME PAGE SPECIFIC STYLES ===== */

/* Hero Section */
.hero-section {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    margin-bottom: 0;
    padding-bottom: calc(var(--spacing-unit) * 4);
}

.hero-section .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--spacing-unit) * 3);
    padding-right: calc(var(--spacing-unit) * 3);
    width: 100%;
}

.hero-section .section-divider {
    margin-bottom: 0;
    margin-top: calc(var(--spacing-unit) * 2);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('https://tse4.mm.bing.net/th/id/OIP.5KwMTzhOIWKQeNkb1TLnSAHaEo?rs=1&pid=ImgDetMain&o=7&rm=3');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    overflow: hidden;
}

/* Hide CSS background image when img tag exists (fallback for older browsers will show CSS background) */
.hero-background .hero-bg-image {
    display: block;
}

.hero-bg-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
}

body.dark .hero-background {
    background: 
        linear-gradient(135deg, rgba(11, 18, 32, 0.8) 0%, rgba(17, 24, 39, 0.7) 100%),
        url('https://tse4.mm.bing.net/th/id/OIP.5KwMTzhOIWKQeNkb1TLnSAHaEo?rs=1&pid=ImgDetMain&o=7&rm=3');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Dark overlay for img tag in dark mode */
body.dark .hero-bg-image {
    filter: brightness(0.7) contrast(1.1);
}

/* Home 2 Hero Background */
.hero-background-home2 {
    background: 
        url('https://tse3.mm.bing.net/th/id/OIP.BdkzzWaw-t9TfLhM1M-yKQHaC1?rs=1&pid=ImgDetMain&o=7&rm=3') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.dark .hero-background-home2 {
    background: 
        linear-gradient(135deg, rgba(11, 18, 32, 0.8) 0%, rgba(17, 24, 39, 0.7) 100%),
        url('https://tse3.mm.bing.net/th/id/OIP.BdkzzWaw-t9TfLhM1M-yKQHaC1?rs=1&pid=ImgDetMain&o=7&rm=3') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-3d-container {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1;
    opacity: 0.3;
}

.metal-ring {
    position: absolute;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    border-color: rgba(30, 58, 138, 0.4);
    animation-duration: 15s;
}

body.dark .ring-1 {
    border-color: rgba(96, 165, 250, 0.4);
}

.ring-2 {
    width: 300px;
    height: 300px;
    border-color: rgba(30, 58, 138, 0.3);
    animation-duration: 20s;
    animation-direction: reverse;
}

body.dark .ring-2 {
    border-color: rgba(96, 165, 250, 0.3);
}

.ring-3 {
    width: 400px;
    height: 400px;
    border-color: rgba(30, 58, 138, 0.2);
    animation-duration: 25s;
}

body.dark .ring-3 {
    border-color: rgba(96, 165, 250, 0.2);
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    text-align: center;
}

.hero-content .row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content .col-lg-10 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: calc(var(--spacing-unit) * 2);
    line-height: 1.1;
    text-align: center !important;
    width: 100%;
    white-space: nowrap;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 51, 102, 0.5);
}

body.dark .hero-title {
    color: #FFFFFF;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(96, 165, 250, 0.6);
}

.hero-title .no-break {
    white-space: nowrap !important;
    display: inline-block !important;
    text-align: center;
    margin: 0 auto;
    width: auto;
}

.hero-title .university-small {
    font-size: 0.7em;
    display: inline-block;
}

.hero-title .title-letter {
    display: inline-block;
    background: linear-gradient(135deg, 
        #FFFFFF 0%, 
        #E6F2FF 50%,
        #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

body.dark .hero-title .title-letter {
    background: linear-gradient(135deg, 
        #FFFFFF 0%, 
        #B3D9FF 50%,
        #FFFFFF 100%);
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.9));
}

/* Fallback for browsers that don't support background-clip */
.hero-title {
    color: #FFFFFF;
}

.hero-subtext {
    font-family: var(--font-subtext);
    font-style: italic;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #FFFFFF;
    margin-bottom: calc(var(--spacing-unit) * 2);
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 51, 102, 0.4);
    text-align: center;
    width: 100%;
    display: block;
    opacity: 1;
    font-weight: 500;
}

body.dark .hero-subtext {
    color: #FFFFFF;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(96, 165, 250, 0.5);
}

.hero-cta {
    display: flex;
    gap: calc(var(--spacing-unit) * 1.5);
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-cta .btn-neo {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Call to Action Card */
.cta-card {
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2);
    margin: 0 auto;
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 2);
    text-align: center;
    color: var(--text-muted);
    opacity: 0.9;
}

body:not(.dark) .cta-text {
    color: #000000 !important;
}

/* Features Section */
.features-section {
    padding: calc(var(--spacing-unit) * 4) 0;
    text-align: center;
    position: relative;
    width: 100%;
    margin: 0;
}

/* Last section before footer - reduce bottom padding */
section:last-of-type {
    padding-bottom: calc(var(--spacing-unit) * 3) !important;
    margin-bottom: 0 !important;
}

.features-section:last-of-type {
    padding-bottom: calc(var(--spacing-unit) * 3) !important;
    margin-bottom: 0 !important;
}

.stats-section:last-of-type {
    padding-bottom: calc(var(--spacing-unit) * 3) !important;
    margin-bottom: 0 !important;
}

.features-section .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--spacing-unit) * 2);
    padding-right: calc(var(--spacing-unit) * 2);
    width: 100%;
    text-align: center;
}

.features-section .row {
    justify-content: center;
    text-align: center;
}

.features-section .neo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}

.features-section .row {
    display: flex;
    align-items: stretch;
}

.features-section .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.features-section .neo-card .feature-text {
    flex-grow: 1;
}

.features-section .neo-card .btn-neo {
    margin-top: auto;
    white-space: nowrap;
}

.card-plus {
    position: absolute;
    top: calc(var(--spacing-unit) * 2);
    right: calc(var(--spacing-unit) * 2);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    z-index: 10;
    line-height: 1;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.neo-card:hover .card-plus {
    opacity: 1;
    transform: rotate(90deg);
}

/* Stat card plus symbol - only for feature cards, not stat cards */
.stat-card .card-plus {
    display: none;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: calc(var(--spacing-unit) * 2);
    opacity: 1;
    transition: var(--transition-smooth);
    display: block;
    position: relative;
    z-index: 1;
    background-color: var(--light-gray);
    filter: brightness(1) contrast(1.05);
}

.neo-card:hover .feature-image {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.1);
}

body.dark .feature-image {
    filter: brightness(0.9) contrast(1.1);
}

body.dark .neo-card:hover .feature-image {
    filter: brightness(1) contrast(1.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    opacity: 0.8;
    text-align: center;
    display: block;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    color: #000000;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    font-weight: 700;
}

body:not(.dark) .feature-title {
    color: #000000 !important;
}

body.dark .feature-title {
    color: var(--text-main);
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.8;
    max-width: 100%;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

body:not(.dark) .feature-text {
    color: #000000 !important;
}

/* Stats Section */
.stats-section {
    padding: calc(var(--spacing-unit) * 4) 0;
    text-align: center;
    position: relative;
    width: 100%;
    margin: 0;
}

.stats-section .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(var(--spacing-unit) * 2);
    padding-right: calc(var(--spacing-unit) * 2);
    width: 100%;
    text-align: center;
    overflow: visible;
    position: relative;
}

/* Fix overlapping in Campus Life Preview section */
.stats-section .row.align-items-center {
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
}

.stats-section .row.align-items-center > [class*="col-"] {
    position: relative;
    z-index: 1;
    padding-left: calc(var(--spacing-unit) * 2);
    padding-right: calc(var(--spacing-unit) * 2);
    overflow: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

    .stats-section .row.align-items-center .col-lg-6 {
        margin-bottom: calc(var(--spacing-unit) * 2);
        flex: 0 0 auto;
        width: 100%;
    }

@media (min-width: 992px) {
    .stats-section .row.align-items-center {
        display: flex;
        flex-wrap: nowrap;
    }
    
    .stats-section .row.align-items-center .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
        padding-left: calc(var(--spacing-unit) * 3);
        padding-right: calc(var(--spacing-unit) * 3);
    }
    
    .stats-section .row.align-items-center .col-lg-6:first-child {
        padding-right: calc(var(--spacing-unit) * 2);
    }
    
    .stats-section .row.align-items-center .col-lg-6:last-child {
        padding-left: calc(var(--spacing-unit) * 2);
    }
}

.stats-section .row.align-items-center .col-lg-6:first-child {
    text-align: left;
}

.stats-section .row.align-items-center .col-lg-6:first-child .page-title,
.stats-section .row.align-items-center .col-lg-6:first-child .feature-text {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.stats-section .row.align-items-center .col-lg-6:first-child .btn-neo {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    width: auto;
}

.stats-section .row.align-items-center img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    margin-left: 0;
    margin-right: 0;
    object-fit: cover;
    opacity: 1;
    filter: brightness(1) contrast(1.05);
}

body.dark .stats-section .row.align-items-center img {
    filter: brightness(0.9) contrast(1.1);
}

/* Ensure nested rows don't cause overflow */
.stats-section .row.align-items-center .col-lg-6:first-child .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
}

.stats-section .row.align-items-center .col-lg-6:first-child .row > [class*="col-"] {
    padding-left: calc(var(--spacing-unit) * 1);
    padding-right: calc(var(--spacing-unit) * 1);
}

.stats-section .row {
    justify-content: center;
    text-align: center;
}

.stat-card {
    text-align: center;
    padding: calc(var(--spacing-unit) * 3);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.stats-section .row:not(.align-items-center) {
    display: flex;
    align-items: stretch;
}

.stats-section .row:not(.align-items-center) > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.stats-section .row:not(.align-items-center) .neo-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stats-section .row:not(.align-items-center) .neo-card .feature-text {
    flex-grow: 1;
}

.stat-card .feature-text {
    flex-grow: 1;
}

.stat-card .btn-neo {
    margin-top: auto;
    white-space: nowrap;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) * 1);
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-primary);
    line-height: 1;
    text-align: center;
}

.stat-plus {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-primary);
    line-height: 1;
    opacity: 0.8;
}

.stat-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

body:not(.dark) .stat-label {
    color: #000000 !important;
}

/* Tablet view (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-bg-image {
        display: block !important;
        opacity: 1 !important;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .hero-3d-container {
        display: none;
    }
    
    /* Fix overlapping in Campus Life Preview section on tablet */
    .stats-section .row.align-items-center > [class*="col-"] {
        padding-left: calc(var(--spacing-unit) * 1.5);
        padding-right: calc(var(--spacing-unit) * 1.5);
    }
    
    .stats-section .row.align-items-center .col-lg-6 {
        margin-bottom: calc(var(--spacing-unit) * 2);
    }
    
    .hero-content .container {
        padding-left: calc(var(--spacing-unit) * 3);
        padding-right: calc(var(--spacing-unit) * 3);
    }
    
    .features-section {
        padding: calc(var(--spacing-unit) * 4) 0;
        overflow-x: hidden;
    }
    
    .features-section .container {
        padding-left: calc(var(--spacing-unit) * 2);
        padding-right: calc(var(--spacing-unit) * 2);
        max-width: 100%;
        overflow-x: visible;
    }
    
    .features-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .features-section .row > [class*="col-"] {
        padding-left: calc(var(--spacing-unit) * 1.5);
        padding-right: calc(var(--spacing-unit) * 1.5);
    }
    
    .features-section .neo-card {
        margin-bottom: calc(var(--spacing-unit) * 2);
        width: 100%;
        max-width: 100%;
        height: 100%;
    }
    
    .features-section .row > [class*="col-"] {
        display: flex;
        flex-direction: column;
        margin-bottom: calc(var(--spacing-unit) * 2);
    }
    
    .features-section .neo-card .feature-text {
        flex-grow: 1;
    }
    
    .features-section .neo-card .btn-neo {
        margin-top: auto;
        white-space: nowrap;
    }
    
    .stats-section {
        padding: calc(var(--spacing-unit) * 4) 0;
        overflow-x: hidden;
    }
    
    .stats-section .container {
        padding-left: calc(var(--spacing-unit) * 2);
        padding-right: calc(var(--spacing-unit) * 2);
        max-width: 100%;
        overflow-x: visible;
    }
    
    .stats-section .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .stats-section .row > [class*="col-"] {
        padding-left: calc(var(--spacing-unit) * 1.5);
        padding-right: calc(var(--spacing-unit) * 1.5);
    }
    
    .stat-card {
        padding: calc(var(--spacing-unit) * 4);
        margin-bottom: calc(var(--spacing-unit) * 2);
        width: 100%;
        max-width: 100%;
        height: 100%;
    }
    
    .stats-section .row > [class*="col-"] {
        display: flex;
        flex-direction: column;
        margin-bottom: calc(var(--spacing-unit) * 2);
    }
    
    .stat-card .feature-text {
        flex-grow: 1;
    }
    
    .stat-card .btn-neo {
        margin-top: auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .hero-3d-container {
        display: none;
    }
    
    .hero-bg-image {
        display: block !important;
        opacity: 1 !important;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .hero-section {
        min-height: 50vh;
        padding-top: 90px;
        padding-bottom: calc(var(--spacing-unit) * 3);
    }
    
    section {
        padding: calc(var(--spacing-unit) * 4) 0;
    }
    
    section .container {
        padding-left: calc(var(--spacing-unit) * 2);
        padding-right: calc(var(--spacing-unit) * 2);
    }
    
    .features-section,
    .stats-section {
        padding: calc(var(--spacing-unit) * 4) 0;
    }
    
    /* Fix overlapping in Campus Life Preview section on mobile */
    .stats-section .row.align-items-center {
        flex-direction: column;
    }
    
    .stats-section .row.align-items-center > [class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: calc(var(--spacing-unit) * 3);
    }
    
    .stats-section .row.align-items-center img {
        margin-top: calc(var(--spacing-unit) * 2);
    }
    
    .hero-title {
        font-size: clamp(1.25rem, 4vw, 2rem);
        white-space: normal;
        overflow-x: visible;
        text-align: center;
        word-break: keep-all;
        letter-spacing: 2px;
    }
    
    .hero-title .no-break {
        white-space: normal;
        display: block;
        text-align: center;
    }
    
    .hero-title .university-small {
        font-size: 0.7em;
        display: inline-block;
    }
    
    .hero-cta {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: calc(var(--spacing-unit) * 1.5);
        width: 100%;
        max-width: 100%;
    }
    
    .hero-cta .btn-neo {
        width: 100%;
        max-width: 280px;
        text-align: center;
        white-space: normal;
        flex-shrink: 1;
    }
    
    .features-section {
        padding: calc(var(--spacing-unit) * 4) 0;
    }
    
    .features-section .container {
        padding-left: calc(var(--spacing-unit) * 2);
        padding-right: calc(var(--spacing-unit) * 2);
        max-width: 100%;
    }
    
    .features-section .row {
        display: flex;
        align-items: stretch;
    }
    
    .features-section .row > [class*="col-"] {
        display: flex;
        flex-direction: column;
        margin-bottom: calc(var(--spacing-unit) * 2);
    }
    
    .features-section .neo-card {
        height: 100%;
    }
    
    .features-section .neo-card .feature-text {
        flex-grow: 1;
    }
    
    .features-section .neo-card .btn-neo {
        margin-top: auto;
        white-space: nowrap;
    }
    
    .stats-section {
        padding: calc(var(--spacing-unit) * 4) 0;
    }
    
    .stats-section .container {
        padding-left: calc(var(--spacing-unit) * 2);
        padding-right: calc(var(--spacing-unit) * 2);
        max-width: 100%;
    }
    
    .stats-section .row {
        display: flex;
        align-items: stretch;
    }
    
    .stats-section .row > [class*="col-"] {
        display: flex;
        flex-direction: column;
        margin-bottom: calc(var(--spacing-unit) * 2);
    }
    
    .stat-card {
        height: 100%;
    }
    
    .stat-card .feature-text {
        flex-grow: 1;
    }
    
    .stat-card .btn-neo {
        margin-top: auto;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Call to Action Section Mobile Fixes */
    .cta-card {
        padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 1.5) !important;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .cta-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: calc(var(--spacing-unit) * 1.5) !important;
        text-align: center !important;
        padding: 0 calc(var(--spacing-unit) * 1);
    }
    
    .cta-card {
        padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 1.5) !important;
    }
    
    /* Ensure containers don't overflow */
    .container {
        max-width: 100% !important;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* Fix row overflow */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Fix column overflow */
    .row > [class*="col-"] {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* Fix hero title overflow */
    .hero-title {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Fix feature text overflow */
    .feature-text {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    /* Fix page title overflow */
    .page-title {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        white-space: normal !important;
    }
}

