/* Moment Highlight Component Styles */
.moment-highlight-section {
    position: relative;
    overflow: hidden;
    
}

.moment-container {
    display: flex;
    align-items: center;
    background-color: rgba(233, 236, 244, 1); /* Màu nền xanh chính */
}

.moment-content {
    flex: 1;
    padding: 60px 60px 60px 0;
    color: var(--primary-color, #2046a1);
    max-width: 50%;
    margin-left: calc((100vw - 1200px) / 2);
}

.moment-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--primary-color, #2046a1);
    line-height: 1.3;
}

.moment-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.moment-cta {
    display: inline-block;
    background:transparent;
    color: var(--primary-color, #2046a1);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color, #2046a1);
}

.moment-cta:hover {
    background-color: var(--primary-color, #2046a1);
    color: #fff;
}

.moment-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
    height: 450px;
}

.moment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1240px) {
    .moment-content {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .moment-content {
        padding: 40px 40px 40px 0;
    }
    
    .moment-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .moment-container {
        flex-direction: column;
    }
    
    .moment-content {
        max-width: 100%;
        padding: 40px 20px;
        margin-left: 0;
        order:1;
    }
    
    .moment-image {
        width: 100%;
        height: 300px;
        order:2;
    }
} 