.entry-content-detail-single h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #1d3557;
    line-height: 1.2;
}
.entry-content-detail-single h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #264653;
    line-height: 1.25;
}
.entry-content-detail-single h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #457b9d;
    line-height: 1.3;
}
.entry-content-detail-single h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #457b9d;
    line-height: 1.35;
}
.entry-content-detail-single p,
.entry-content-detail-single ul,
.entry-content-detail-single ol {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2em;
}
.entry-content-detail-single ul,
.entry-content-detail-single ol {
    padding-left: 2em;
}
.entry-content-detail-single li {
    margin-bottom: 0.5em;
}
.entry-content-detail-single blockquote {
    border-left: 4px solid #457b9d;
    background: #f1f5f9;
    color: #333;
    padding: 1em 1.5em;
    margin: 1.5em 0;
    font-style: italic;
    border-radius: 0.5em;
}
.entry-content-detail-single img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5em auto;
}
.entry-content-detail-single table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}
.entry-content-detail-single th,
.entry-content-detail-single td {
    border: 1px solid #e2e8f0;
    padding: 0.6em 1em;
    text-align: left;
}
.entry-content-detail-single a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.2s;
}
.entry-content-detail-single a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}


.gallery-icon a {
    height: 160px;
    width: auto;
    overflow: hidden;
    border-radius: 3px;
    display: block;
}

.gallery-icon a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.375rem;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}


	.fancybox__caption{
		display: none;
	}
	
	
/* Responsive cho tablet */
@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
}

/* Responsive cho mobile nhỏ */
@media (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.375rem;
    }
}
	
.fancybox__toolbar{
	margin-top: 20px;
}