/**
 * Layout: Text & Image
 * 
 * @package hca-ict
 */

#text-image {
    position: relative;
}

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

#text-image .text-content {
    line-height: 1.6;
}

#text-image .text-content p {
    margin-bottom: 1rem;
}

#text-image .text-content p:last-child {
    margin-bottom: 0;
}

#text-image .image-wrapper {
    position: relative;
    width: 100%;
}

#text-image .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

#text-image .button-wrapper {
    margin-top: 1rem;
}

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

