
body {
    margin: 0;
    min-height: 250vh; 
    background-color: #FFFFFF;
}

.hks-section-wrapper {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #1a1a1a;
    padding: 60px 0; 
    overflow: hidden;
}

.hks-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hks-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    width: max-content;
    padding: 10px 0; 
}

.hks-start-spacer {
    flex-shrink: 0;
    width: 15vw;
}

.hks-title-section {
    flex-shrink: 0;
    width: auto;
    padding: 0 5vw; 
    display: flex;
    align-items: center; 
    box-sizing: border-box; 
}


.hks-title-icon {
    display: block;
    width: clamp(36px, 3.8vw, 56px);
    height: auto;
    margin: 0 auto 14px auto; 
}

.hks-main-title {
    font-size: 3.8rem; 
    font-weight: 700;
    line-height: 1.1;  
    letter-spacing: -0.01em; 
    color: #000000;
    margin: 0 auto;           
    text-align: center;       
    max-width: 16ch;          
}

.hks-subtitle {
    margin-top: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    max-width: 42ch;
    text-align: center;      
    margin-left: auto;
    margin-right: auto;
}

.hks-card {
    width: 380px;
    margin: 0 16px; 
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #fdfdfd;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden; 
}

.hks-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.hks-card-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #f0f0f0;
    overflow: hidden;
}

.hks-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hks-card:hover .hks-card-image { transform: scale(1.05); }

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

.hks-card-title-wrapper { 
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px; 
    min-height: 64px; 
}

.hks-card-number {
    font-family: 'Courier New', Courier, monospace;
    color: #0d31bb;
    font-size: 1rem;
    font-weight: bold;
    padding-top: 0.15em;
}

.hks-card-title {
    font-size: 1.25rem; 
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
    margin: 0;
    flex-grow: 1;
}

.hks-card-description {
    font-size: 0.94rem;
    line-height: 1.55; 
    color: #000000;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;             
    line-clamp: 6;                    
    -webkit-line-clamp: 6;           
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.hks-slider-button {
    display: none;
}

@media (max-width: 1024px) {
    .hks-section-wrapper {
        padding: 36px 20px; 
    }

    
    .hks-track { 
        display: block; 
        width: 100%;
    }


    .hks-start-spacer {
        display: none;
    }

    .hks-title-section {
        width: 100%;
        padding: 0;
        justify-content: center; 
        margin-bottom: 40px;
    }

    .hks-title-icon {
        margin-left: auto;
        margin-right: auto;
        width: clamp(36px, 9vw, 60px);
    }

    .hks-main-title {
        text-align: center;
        font-size: 2.6rem; 
        line-height: 1.15;
        max-width: none;
    }

    .hks-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
        max-width: 48ch;
        color: #555;
    }

    
    .hks-card {
        width: 100%; 
        margin: 0 0 22px 0; 
    }

    
    .hks-card-title-wrapper {
      min-height: auto; 
      margin-bottom: 10px;
    }

    .hks-card-description {
      display: block;           
      line-clamp: unset;        
      -webkit-line-clamp: initial;
      overflow: visible;
    }
  }