/* ========================================
   SECTION: Main Container
======================================== */
.title-section {
    padding: 60px 0 40px 0;
    background-color: #fff;
}

/* ========================================
   SECTION: Title Header
======================================== */
.title-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 649px;
    margin: 0 auto;
    min-height: 89px;
}

.icon-container {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container svg {
    width: 100%;
    height: 100%;
}

.section-title-text {
    flex: 1;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ========================================
   SECTION: Grid Layout
======================================== */
.grid-layout {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    align-items: flex-start;
}

.image-column {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.display-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.content-column {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-row {
    display: flex;
    gap: 16px;
}

/* ========================================
   SECTION: Feature Cards
======================================== */
.feature-card {
    width: 100%;
    padding: 16px;
    background: #FAFAFA;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: fit-content;
    box-sizing: border-box;
}

.pod-badge {
    width: 44px;
    height: 44px;
    background-color: #1B365D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    z-index: 10;
    pointer-events: none;flex-shrink: 0
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: cover;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0; /* Allow content to shrink and wrap */
    overflow-wrap: break-word;
}

.feature-title {
    color: #000;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 4px;
}

.feature-description {
    color: #000;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
}

/* ========================================
   SECTION: Animations
======================================== */
.title-section [data-animation-direction] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.title-section [data-animation-direction].animate-from-bottom,
.title-section [data-animation-direction].animation-from-bottom {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   SECTION: Responsive Design - Tablet
======================================== */
@media (max-width: 768px) {
    .title-section {
        padding: 40px 0 30px 0;
    }
    
    .title-frame {
        max-width: 100%;
        padding: 0 20px;
        min-height: auto;
        align-items: flex-start;
        gap: 12px;
    }
    
    .section-title-text {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .icon-container {
        margin-top: 4px;
        flex-shrink: 0;
    }
    
    .grid-layout {
        flex-direction: column;
        gap: 10px;
    }
    
    .image-column,
    .content-column {
        flex: none;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .content-row {
        flex-direction: column;
    }
    
    .feature-card {
        width: 100%;
        padding: 14px;
    }
    
    .feature-title {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .feature-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .pod-badge {
        width: 38px;
        height: 38px;
        font-size: 10px;
        top: 6px;
        right: 6px;
    }
}

/* ========================================
   SECTION: Responsive Design - Mobile
======================================== */
@media (max-width: 480px) {
    .section-title-text {
        font-size: 20px;
    }
    
    .title-frame {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .icon-container {
        margin-top: 0;
    }
    
    .grid-layout {
        gap: 15px;
    }
    
    .feature-card {
        padding: 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        align-self: center;
    }
    
    .feature-content {
        text-align: left;
    }
    
    .feature-title {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .feature-description {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .pod-badge {
        width: 34px;
        height: 34px;
        font-size: 9px;
        top: 6px;
        right: 6px;
    }
}
