.image-text-bullets {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.image-text-bullets__intro {
    position: relative;
    width: 100%;
    height: 575px; 
    aspect-ratio: 288/115; 
    overflow: hidden;
    background: transparent;
}

.image-text-bullets__intro-bg-top,
.image-text-bullets__intro-bg-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 0;
}

.image-text-bullets__intro-bg-top {
    top: 0;
    height: 50%;
}

.image-text-bullets__intro-bg-bottom {
    bottom: 0;
    height: 50%;
}

.image-text-bullets__intro-image {
    position: relative;
    width: 1600px;
    max-width: 1600px;
    height: 100%;
    z-index: 2;
    margin: 0 auto;
    transition: width 0.1s ease-out, max-width 0.1s ease-out;
    overflow: hidden;
    border-radius: 28px;
}

@media (min-width: 1600px) {
    .image-text-bullets__intro-image {
        width: 90vw;
        max-width: 90vw;
    }
}

@media (max-width: 768px) {
    .image-text-bullets__intro-image {
        width: 95%;
        max-width: 95%;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .image-text-bullets__intro-image {
        width: 92%;
        max-width: 92%;
        border-radius: 16px;
    }
}

.image-text-bullets__intro-bg.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-bottom-left-radius: 28px; 
    border-bottom-right-radius: 28px; 
}

.image-text-bullets .hero-title-wrapper {
    position: relative;
    margin-top: -80px;
    margin-bottom: 80px;
    text-align: left;
    z-index: 5;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.image-text-bullets .hero-title {
    display: inline-block;
}

.image-text-bullets .hero-title__top {
    display: block;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 128px; 
    font-weight: 700; 
    line-height: 0.69; 
    letter-spacing: -3.2px; 
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    color: #FBF8F6; 
}

.image-text-bullets .hero-title__part1,
.image-text-bullets .hero-title__part2 {
    display: block;
}

.image-text-bullets .hero-title__part2 {
    line-height: 0.8;
}

.image-text-bullets .hero-title__top[style*="background-color"]:not([style*="background-color: transparent"]) {
    padding: 12px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.image-text-bullets__content {
    padding: 80px 40px 120px;
    position: relative;
    z-index: 2;
}

.image-text-bullets__container {
    max-width: 1440px;
    margin: 0 auto;
}

.image-text-bullets__text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.image-text-bullets__text {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px; 
    font-weight: 400; 
    line-height: 1.6; 
    letter-spacing: -0.2px; 
    color: #FBF8F6; 
    margin: 0;
    padding-left: 40px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.image-text-bullets__text-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.image-text-bullets__bullet-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #FBF8F6;
    margin: 0 0 0 80px;
}

.image-text-bullets__bullets {
    list-style: none;
    margin: 0 0 0 80px;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 40px;
}

.image-text-bullets__bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.image-text-bullets__bullet-icon {
    flex-shrink: 0;
    width: 20px;
    height: 13px;
}

.image-text-bullets__bullet-text {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.2px;
    color: #FBF8F6;
}

.image-text-bullets__bullet-link {
    color: inherit;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.image-text-bullets__bullet-link:focus-visible,
.image-text-bullets__bullet-link:hover {
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 1024px) {
    .image-text-bullets__intro {
        height: auto; 
    }
    
    .image-text-bullets .hero-title-wrapper {
        margin-top: -60px;
        margin-bottom: 60px;
        padding: 0 32px;
    }
    
    .image-text-bullets .hero-title__top {
        font-size: 80px;
        letter-spacing: -2px;
    }
    
    .image-text-bullets__content {
        padding: 60px 32px 100px;
    }
    
    .image-text-bullets__text-wrapper {
        gap: 60px;
    }
    
    .image-text-bullets__text {
        font-size: 17px;
        padding-left: 32px;
    }
    
    .image-text-bullets__bullet-title {
        font-size: 22px;
        margin-left: 60px;
    }
    
    .image-text-bullets__bullets {
        gap: 16px 32px;
        margin-left: 60px;
    }
    
    .image-text-bullets__bullet-icon {
        width: 18px;
        height: 12px;
    }
    
    .image-text-bullets__bullet-text {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .image-text-bullets__intro {
        height: auto; 
    }
    
    .image-text-bullets__intro-bg.hero-image {
        border-bottom-left-radius: 24px; 
        border-bottom-right-radius: 24px; 
    }
    
    .image-text-bullets .hero-title-wrapper {
        margin-top: -50px;
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .image-text-bullets .hero-title__top {
        font-size: 48px;
        letter-spacing: -1.2px;
    }
    
    .image-text-bullets__content {
        padding: 50px 20px 80px;
    }
    
    .image-text-bullets__text-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-text-bullets__text {
        font-size: 16px;
        padding-left: 20px;
    }
    
    .image-text-bullets__bullet-title {
        font-size: 20px;
        margin-left: 20px;
    }
    
    .image-text-bullets__bullets {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-left: 20px;
    }
    
    .image-text-bullets__bullet-icon {
        width: 16px;
        height: 11px;
    }
    
    .image-text-bullets__bullet-text {
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .image-text-bullets {
        overflow-x: hidden;
    }
    
    .image-text-bullets__intro {
        height: auto; 
    }
    
    .image-text-bullets__intro-bg.hero-image {
        border-bottom-left-radius: 20px; 
        border-bottom-right-radius: 20px; 
    }
    
    .image-text-bullets .hero-title-wrapper {
        margin-top: -25px;
        margin-bottom: 40px;
        padding: 0 16px;
    }
    
    .image-text-bullets .hero-title__top {
        font-size: 36px;
        letter-spacing: -0.9px;
    }
    
    .image-text-bullets__content {
        padding: 0px 16px 70px;
    }
    
    .image-text-bullets__text {
        font-size: 15px;
        padding-left: 16px;
    }
    
    .image-text-bullets__bullet-title {
        font-size: 18px;
        margin-left: 16px;
    }
    
    .image-text-bullets__bullets {
        gap: 12px;
        margin-left: 16px;
    }
    
    .image-text-bullets__bullet-icon {
        width: 14px;
        height: 10px;
    }
    
    .image-text-bullets__bullet-text {
        font-size: 14px;
    }
}

/* Alignment */
.alignfull.image-text-bullets {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.alignwide.image-text-bullets .image-text-bullets__container {
    max-width: 1280px;
}

/* Editor Preview */
.editor-preview.image-text-bullets .image-text-bullets__intro {
    height: 400px;
}

.editor-preview.image-text-bullets .hero-title-wrapper {
    margin-top: -60px;
    margin-bottom: 60px;
}

.editor-preview.image-text-bullets .hero-title__top {
    font-size: 80px;
}

.editor-preview.image-text-bullets .image-text-bullets__content {
    padding: 40px 20px 60px;
}

.editor-preview.image-text-bullets .image-text-bullets__text {
    font-size: 16px;
    padding-left: 20px;
}

.editor-preview.image-text-bullets .image-text-bullets__bullet-title {
    font-size: 20px;
}

.editor-preview.image-text-bullets .image-text-bullets__bullet-icon {
    width: 18px;
    height: 12px;
}

.editor-preview.image-text-bullets .image-text-bullets__bullet-text {
    font-size: 15px;
}

