/**
 * Layout: HCA ICT Intro
 * 
 * @package hca-ict
 */

#hca-ict-intro {
    position: relative;
}

#hca-ict-intro .text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hca-ict-intro .text-wrapper {
    line-height: 1.6;
}

#hca-ict-intro .text-wrapper p {
    margin-bottom: 1rem;
}

#hca-ict-intro .text-wrapper p:last-child {
    margin-bottom: 0;
}

#hca-ict-intro .image-container {
    position: relative;
    width: 100%;
}

#hca-ict-intro .image-container.square {
    padding-bottom: 100%;
}

#hca-ict-intro .image-container img {
    position: absolute;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    top: 50%;
    transform: translateY(-50%);
}

#hca-ict-intro .button-wrapper {
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    #hca-ict-intro .button-wrapper {
        flex-direction: column;
    }
    
    #hca-ict-intro .button-wrapper .button {
        width: 100%;
        text-align: center;
    }
}

