/*
Theme Name: Kadence-KidZania
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.
Tags: translation-ready,two-columns,right-sidebar,left-sidebar,footer-widgets,blog,custom-logo,custom-background,custom-menu,rtl-language-support,editor-style,threaded-comments,custom-colors,featured-images,wide-blocks,full-width-template,theme-options,e-commerce
Version: 1.2.28.1754385702
Updated: 2025-08-05 16:21:42

*/
/* Container chính */
.co-so-container {
    padding: 20px; /* Padding đều 4 phía */
    max-width: 1200px;
    margin: 0 auto;
}

/* Row chia cột */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Cột bên trái cho ảnh thumbnail */
.col-left {
    flex: 1 1 50%; /* Chiếm 50% chiều rộng */
}

/* Cột bên phải cho chi tiết ACF */
.col-right {
    flex: 1 1 50%; /* Chiếm 50% chiều rộng */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Định dạng ảnh thumbnail */
.post-thumbnail-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Định dạng danh sách chi tiết */
.acf-details {
    padding-left: 20px;
}

.acf-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.acf-detail-item i {
    margin-right: 10px;
    color: #0073aa; /* Màu icon */
    font-size: 1.2em;
}

.acf-detail-item p {
    margin: 0;
    line-height: 1.5;
}

/* Responsive cho màn hình nhỏ hơn */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    .col-left, .col-right {
        flex: 1 1 100%;
    }
}

/*Nút Learn more modal*/
.kt-blocks-modal-link:not(.kb-btn-global-inherit) {
    align-items: center;
    background: 0 0;
    border: 2px solid #555;
    border-radius: 12px;
    color: #555;
    cursor: pointer;
    display: inline-block;
    display: inline-flex
;
    font-size: 16px;
    justify-content: center;
    line-height: 24px;
    outline: 0;
    padding: 8px 12px;
    transition: all .3s
}

