/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

div.ui-datepicker .ui-corner-all > span {
	display: none;
}

.ui-datepicker-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.ui-datepicker-title .ui-datepicker-month,
.ui-datepicker-title .ui-datepicker-year{
	height: 30px;
	border-radius: 10px;
	border: 1px solid #ccc;
}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

.tam-linh-section {
            margin: 40px 0;
            padding: 20px 0;
        }
        
        .section-header {
			position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #d5d5d5;
        }

.section-header::after {
	    content: "";
    position: absolute;
    bottom: -3px;
    width: 10%;
    height: 3px;
    background-color: #147b71;
}
        
        .section-title {
            font-size: 24px;
            font-weight: bold;
            margin: 0;
            color: #333;
        }
        
        .view-more {
            color: #666;
            text-decoration: none;
            font-size: 14px;
			width: 8%;
			margin-bottom: 0px;
        }
        
        .view-more:hover {
            color: #e74c3c;
        }
        
        .tam-linh-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .tam-linh-main-post {
            position: relative;
        }
        
        .tam-linh-main-post .post-thumbnail {
            width: 100%;
            height: 300px;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .tam-linh-main-post .post-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .tam-linh-main-post:hover .post-thumbnail img {
            transform: scale(1.05);
        }
        
        .tam-linh-main-post .post-title {
            font-size: 18px;
            font-weight: bold;
            line-height: 1.4;
            margin: 0 0 10px 0;
            color: #333;
        }
        
        .tam-linh-main-post a {
            text-decoration: none;
            color: inherit;
        }
        
        .tam-linh-main-post a:hover .post-title {
            color: #e74c3c;
        }
        
        .post-excerpt {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
        }
        
        .tam-linh-side-posts {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .tam-linh-side-post {
            display: flex;
            gap: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .tam-linh-side-post:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .tam-linh-side-post .post-thumbnail-small {
            width: 150px;
            height: 100px;
            flex-shrink: 0;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .tam-linh-side-post .post-thumbnail-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .tam-linh-side-post:hover .post-thumbnail-small img {
            transform: scale(1.05);
        }
        
        .tam-linh-side-post .post-title-small {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            margin: 0;
            color: #333;
        }
        
        .tam-linh-side-post a {
            text-decoration: none;
            color: inherit;
            display: flex;
            gap: 15px;
            flex: 1;
        }
        
        .tam-linh-side-post a:hover .post-title-small {
            color: #e74c3c;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .tam-linh-grid {
                grid-template-columns: 1fr;
            }
            
            .tam-linh-side-post .post-thumbnail-small {
                width: 120px;
                height: 80px;
            }
            
            .tam-linh-side-post .post-title-small {
                font-size: 14px;
            }
        }