﻿body p {
    text-align: justify;
    margin: 10px;
}

.responsive {
    height: auto;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.detail_content img {
    margin-bottom: 20px;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#outer {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

    #outer > div {
        flex: 1;
        padding: 2px;
    }

        #outer > div > img {
            width: 100%;
            min-width: 200px;
            margin: 10px;
        }

.btn_learn {
    background: #6cbcb1;
    padding: 10px 16px;
    font-size: 14px;
    color: #fff;
    border-radius: 30px;
    display: inline-block;
}

#btn_link {
    color: #fff;
}

li {
    word-break: break-all;
    text-align: left;
}

.left_col .contact_col {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 0.4fr;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px; 
    text-align: center;
}

.left_col .contact_col a {
    width: 100%;
}

.view_more_link_btn {
    border: 1px solid #3798d6;
    border-radius: 30px;
    padding: 9px 20px;
    font-size: 16px;
    color: #3798d6;
    text-align: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    display: inline-block;
    min-width: 155px;
}

.view_more_link_btn:hover {
    background: #3798d6;
    color: #fff;
}

@media (min-width: 400px) and (max-width: 991px) {
    .left_col .contact_col {
        grid-template-columns: repeat(1, minmax(140px, 0.4fr));
        margin-bottom: 20px; 
    }
}

@media (min-width: 1320px) {
    .left_col .contact_col {
        grid-template-columns: repeat(1, minmax(140px, 0.4fr));
        margin-bottom: 0; /* no margin for 2-col layout */
    }
}