/*
Theme Name: Twenty Twenty
Text Domain: twentytwenty
Version: 2.9
Tested up to: 6.8
Requires at least: 4.7
Requires PHP: 5.2.4
Description: (Original description preserved)
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/twentytwenty/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/

/* -------------------------------------------------------------------------- */
/* >>> CLEANED & OPTIMIZED STYLES */
/* -------------------------------------------------------------------------- */

:root {
	--primary: #1a237e;
	--secondary: #ff6f00;
	--accent: #00c853;
	--light: #e3f2fd;
	--dark: #0d47a1;
	--text: #212121;
	--background: #bbdefb;
}

body {
	font-family: "Poppins", sans-serif;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: #f5f5f5;
}

/* -------------------------------------------------------------------------- */
/* General / Content */
/* -------------------------------------------------------------------------- */

.content {
	flex: 1;
	padding: 2rem;
}

.page-title {
	color: var(--primary);
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 1.5rem;
}

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

.village-text p {
	font-size: 18px !important;
	text-align: justify;
	line-height: 1.7;
}

.hidden-video {
	display: none;
}

/* Animation for elements */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate {
	animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
	animation-delay: 0.2s;
}

.delay-2 {
	animation-delay: 0.4s;
}

.delay-3 {
	animation-delay: 0.6s;
}

/* -------------------------------------------------------------------------- */
/* Beautiful Carousel Styles */
/* -------------------------------------------------------------------------- */

.beautiful-carousel {
	position: relative;
	width: 100%;
	height: 80vh;
	overflow: hidden;
	margin-bottom: 0;
	background: #000;
}

.carousel-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.carousel-slide {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	align-items: center;
	justify-content: center;
	display: none;
	position: relative;
}

.carousel-slide.active {
	opacity: 1;
	display: block;
}

.slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.2),
			rgba(0, 0, 0, 0.6));
	z-index: 1;
}

.slide-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	z-index: 2;
}

.caption-container {
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 0 20px;
}

.caption-badge {
	display: inline-block;
	background: rgba(255, 193, 7, 0.9);
	color: #000;
	padding: 8px 20px;
	border-radius: 30px;
	font-weight: bold;
	margin-bottom: 20px;
	font-size: 14px;
	letter-spacing: 1px;
}

.caption-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	line-height: 1.2;
}

.caption-subtitle {
	font-size: 1.3rem;
	margin-bottom: 25px;
	opacity: 0.9;
}

.caption-line {
	width: 80px;
	height: 3px;
	background: #ffc107;
	margin: 0 auto 25px;
}

.btn-explore {
	background: rgba(255, 193, 7, 0.9);
	color: #000;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-explore:hover {
	background: #ffc107;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
}

.carousel-nav:hover {
	background: rgba(255, 255, 255, 0.3);
}

.carousel-prev {
	left: 20px;
}

.carousel-next {
	right: 20px;
}

.carousel-indicators {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	z-index: 10;
}

.carousel-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-indicator.active {
	background: #ffc107;
	transform: scale(1.2);
}

.carousel-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: rgba(255, 255, 255, 0.2);
	z-index: 10;
}

.carousel-progress-bar {
	height: 100%;
	width: 0%;
	background: #ffc107;
	transition: width 0.1s linear;
}

/* -------------------------------------------------------------------------- */
/* Footer Styles */
/* -------------------------------------------------------------------------- */

.footer {
	background: linear-gradient(135deg,
			var(--primary) 0%,
			var(--dark) 100%);
	color: white;
	position: relative;
	overflow: hidden;
	margin-top: auto;
	box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.site-footer {
	font-family: "Noto Sans Devanagari", sans-serif;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%,
			rgba(255, 111, 0, 0.1) 0px,
			transparent 50px),
		radial-gradient(circle at 80% 20%,
			rgba(0, 200, 83, 0.1) 0px,
			transparent 50px),
		radial-gradient(circle at 40% 40%,
			rgba(255, 255, 255, 0.05) 0px,
			transparent 100px);
	pointer-events: none;
}

.footer-title {
	font-weight: 700;
	border-bottom: 3px solid var(--secondary);
	padding-bottom: 12px;
	margin-bottom: 25px;
	position: relative;
	font-size: 1.4rem; /* Specific styles take precedence */
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
	color: #fff;
	font-size: 18px; /* Override from duplicate, keeping 1.4rem as general, 18px for specific sections */
	font-weight: 600; /* Override from duplicate */
	color: #fff;
}

.footer-title::after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: var(--accent);
}

.footer-content {
	position: relative;
	z-index: 1;
}

/* Quick Links/Footer Links */
.quick-links a,
.footer-links a {
	display: block; /* Combined display:block from .quick-links a */
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	margin-bottom: 15px; /* From .quick-links a */
	transition: all 0.3s ease; /* From .quick-links a */
	position: relative;
	padding-left: 20px; /* From .quick-links a */
	font-weight: 500; /* From .quick-links a */
	color: #cbd5e1; /* From .footer-links a - keeping for link color */
	margin-bottom: 6px; /* From .footer-links li, applied to the link instead */
	padding-left: 0; /* Removing extra padding-left */
	display: inline-block; /* Reverting to inline-block for specific link types */
}

.quick-links a {
	padding-left: 20px; /* Restore specific padding for arrow links */
}

.footer-links li {
	margin-bottom: 6px;
}

.quick-links a::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--secondary);
	font-weight: bold;
	transition: all 0.3s ease;
}

.quick-links a:hover {
	color: white;
	transform: translateX(8px);
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.quick-links a:hover::before {
	color: var(--accent);
	transform: translateX(5px);
}

.footer-links a:hover {
	color: #fff;
	padding-left: 4px;
	transform: none; /* Reset transform inherited from quick-links */
}

/* Contact Info */
.contact-info p {
	margin-bottom: 18px;
	display: flex;
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.1);
	padding: 12px 15px;
	border-radius: 8px;
	border-left: 3px solid var(--secondary);
	transition: all 0.3s ease;
}

.contact-info p:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.contact-info i {
	margin-top: 3px;
	margin-right: 15px;
	min-width: 20px;
	color: var(--accent); /* Original */
	font-size: 1.1rem;
	color: #ffd166; /* Specific color */
}

.info-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 15px;
	border-left: 3px solid var(--accent);
	transition: all 0.3s ease;
}

.info-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-3px);
}

/* Copyright & Visitor Count */
.copyright {
	background: rgba(0, 0, 0, 0.3);
	padding: 20px 0;
	font-size: 0.95rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.visitor-count {
	background: linear-gradient(135deg, var(--secondary) 0%, #ff9100 100%);
	padding: 8px 15px;
	border-radius: 25px;
	display: inline-block;
	margin: 8px 0;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	font-weight: 600;
}

/* Social Links/Buttons */
.social-links {
	display: flex;
	gap: 15px;
	margin-top: 25px;
}

.social-links a,
.social-btn,
.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px; /* From .social-links a */
	height: 45px; /* From .social-links a */
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.2rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	width: 38px; /* Override to 38px */
	height: 38px; /* Override to 38px */
	margin-right: 5px; /* From .social-btn */
}

.social-links a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg,
			rgba(255, 255, 255, 0.2) 0%,
			transparent 100%);
	border-radius: 50%;
}

.social-links a:hover {
	background: white;
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Hover effects for specific social links */
.social-links a.facebook:hover {
	color: #3b5998;
}

.social-links a.twitter:hover {
	color: #1da1f2;
}

.social-links a.instagram:hover {
	color: #e4405f;
}

.social-links a.youtube:hover {
	color: #cd201f;
}

.social-links a.whatsapp:hover {
	color: #25d366;
}

/* Hover effects for generic social buttons/icons */
.social-btn:hover {
	background: rgba(255, 255, 255, 0.35);
	transform: translateY(-3px);
}
.social-icon:hover {
	background: #1e293b;
	transform: translateY(-3px);
}

/* Accessibility Button */
.accessibility-btn {
	position: fixed;
	bottom: 25px;
	right: 25px;
	background: linear-gradient(135deg, var(--secondary) 0%, #ff9100 100%);
	color: white;
	border: none;
	border-radius: 50px;
	padding: 14px 22px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	font-weight: 600;
}

.accessibility-btn:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Developer Link */
.developer-link {
	color: var(--accent) !important;
	font-weight: 600;
	text-decoration: none !important;
	position: relative;
	padding: 0 2px;
}

.developer-link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.developer-link:hover {
	color: white !important; /* Original */
	color: #fff; /* Duplicate override - keeping #fff */
}

.developer-link:hover::after {
	transform: scaleX(1);
}

/* -------------------------------------------------------------------------- */
/* Mega Footer Menu */
/* -------------------------------------------------------------------------- */

.mega-footer-menu {
	column-count: 2; /* Auto 2 columns */
	column-gap: 20px;
}

.footer-menu-item {
	break-inside: avoid;
	margin-bottom: 8px;
}

.footer-menu-link {
	color: #e2e8f0;
	text-decoration: none;
	font-size: 15px;
	display: inline-block;
	padding: 3px 0;
	transition: 0.2s;
}

.footer-menu-link:hover {
	color: #fff;
	padding-left: 6px;
}

/* -------------------------------------------------------------------------- */
/* Video Gallery Grid */
/* -------------------------------------------------------------------------- */

.video-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.video-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.video-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* -------------------------------------------------------------------------- */
/* Media Queries (Optimized and Merged) */
/* -------------------------------------------------------------------------- */

/* Max Width 1200px (Large Tablet/Small Desktop) */
@media (max-width: 1200px) {
	.video-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Max Width 1024px (Tablet Landscape) */
@media (max-width: 1024px) {
	.footer .container .row {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.footer .col-md-4 {
		flex: 0 0 50%;
		max-width: 50%;
		margin-bottom: 20px;
	}
}

/* Min Width 992px (Desktop/Mega Menu) */
@media (min-width: 992px) {
	.mega-footer-menu {
		column-count: 3; /* On desktop = 3 columns */
	}
}

/* Max Width 786px/768px (Tablet/Mobile Landscape) */
@media (max-width: 786px) {
	/* 768px/786px merger */
	.beautiful-carousel {
		height: 60vh;
	}

	.caption-title {
		font-size: 1.8rem;
	}

	.caption-subtitle {
		font-size: 1rem;
	}

	.carousel-nav {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.footer .col-md-4 {
		margin-bottom: 35px; /* From 768px */
		flex: 0 0 100%; /* From 786px */
		max-width: 100%; /* From 786px */
		margin-bottom: 20px; /* From 786px, overriding 35px */
	}

	.footer-title {
		font-size: 1.3rem;
	}

	.accessibility-btn {
		bottom: 15px;
		right: 15px;
		padding: 12px 18px;
		font-size: 0.9rem;
		display: none; /* From duplicate 768px query */
	}

	.social-links {
		justify-content: flex-start;
	}

	.footer p,
	.footer a {
		font-size: 13px;
	}

	.visitor-count {
		font-size: 12px;
	}

	.video-gallery-grid {
		grid-template-columns: 1fr;
	}
}

/* Max Width 576px (Mobile) */
@media (max-width: 576px) {
	.beautiful-carousel {
		height: 50vh;
	}

	.caption-title {
		font-size: 1.5rem;
	}

	.caption-subtitle {
		font-size: 0.9rem;
	}

	.btn-explore {
		padding: 10px 20px;
		font-size: 14px;
	}
}

/* Max Width 320px (Small Mobile) */
@media (max-width: 320px) {

	.footer p,
	.footer a {
		font-size: 12px;
	}

	.social-links i {
		font-size: 14px;
	}
}


/* --------------------------------------------------
   VILLAGE INFO PAGE — NO CONFLICT CUSTOM CSS
   All classes prefixed with .village-
-------------------------------------------------- */

/* Marathi Font (Beautiful & readable) */
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@500;600;700&display=swap');

.village-info-container,
.village-info-container * {
    font-family: 'Baloo Bhaijaan 2', sans-serif;
}

/* Page Wrapper */
.village-info-container {
    padding: 30px 10px;
    background: #f8f9fa;
}

.village-info-content {
    max-width: 1100px;
    margin: auto;
}

/* Section Titles */
.village-info-content .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #444;
}

/* Subtitles */
.village-info-content .section-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Card Section Style */
.village-info-content .card-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 25px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
    border: 1px solid #e6e6e6;
}

/* Paragraph Style */
.village-info-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

/* Info Grid */
.village-info-content .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}

.village-info-content .info-grid div,
.village-info-content .info-grid-item {
    background: #ffffff;
    border: 1px solid #ececec;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.village-info-content .info-grid div:hover,
.village-info-content .info-grid-item:hover {
    background: #f1f7ff;
    border-color: #c8ddff;
}

/* Info Value */
.village-info-content .info-value {
    font-weight: 700;
    margin-top: 3px;
    color: #222;
}

/* Population Table */
.village-info-content .population-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
}

/* Header */
.village-info-content .population-table thead {
    background: #003f7f;
    color: white;
}

.village-info-content .population-table th,
.village-info-content .population-table td {
    padding: 15px 12px;
    border: 1px solid #e2e2e2;
    text-align: center;
}

.village-info-content .population-table td {
    background: #ffffff;
}

.village-info-content .population-table tr:nth-child(even) td {
    background: #f7faff;
}

/* Icons */
.village-info-content i {
    font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .village-info-content .section-title {
        font-size: 26px;
    }

    .village-info-content .section-subtitle {
        font-size: 22px;
    }

    .village-info-content p {
        font-size: 17px;
    }

    .village-info-content .info-grid {
        grid-template-columns: 1fr;
    }

    .village-info-content .info-grid div {
        font-size: 17px;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Extra Padding Fix for Themes */
.page-content .village-info-container {
    margin-top: 20px;
}


/* Official Persons Gallery */
.official-gallery {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  margin: 40px 0;
}

.official-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all .3s ease;
}

.official-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Photo */
.official-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

/* Name */
.official-name {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  color: #222;
}

/* Designation */
.official-designation {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  margin: 8px 0;
}

/* Contact */
.official-contact {
  font-weight: 600;
  color: #007bff;
  margin-top: 10px;
}

/* -------------------------------------------------------------
   SMART GALLERY STAFF DIRECTORY (Modern, Clean, Professional)
--------------------------------------------------------------*/

.official-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.official-staff-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: none;
}

.official-staff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.15);
}

/* ---- IMAGE STYLE ---- */
.official-staff-photo-wrap {
    width: 100%;
    height: 240px;  
    overflow: hidden;
    border-bottom: 1px solid #eee;
    background: #f7f7f7;
    border-radius: 14px 14px 0 0;
}

.official-staff-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;             /* ← Smart crop like gallery */
    object-position: top center;   /* ← Shows face properly */
    transition: all 0.4s ease;
}

.official-staff-card:hover .official-staff-photo {
    transform: scale(1.07);  /* Smooth zoom */
}

/* ---- CONTENT AREA ---- */
.official-staff-content {
    padding: 18px;
    text-align: center;
}

.official-staff-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.official-staff-position {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

/* ---- Contact styling ---- */
.official-staff-contact {
    margin-top: 10px;
}

.staff-contact-line {
    font-size: 14px;
    margin: 6px 0;
}

.staff-icon {
    margin-right: 6px;
}

.staff-contact-text {
    color: #333;
    text-decoration: none;
}

.staff-contact-text:hover {
    text-decoration: underline;
}

/* Masonry Layout */
.official-staff-grid {
    column-count: 3;
    column-gap: 25px;
}

@media (max-width: 992px) {
    .official-staff-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .official-staff-grid {
        column-count: 1;
    }
}

/* Masonry item */
.official-staff-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 25px;
    break-inside: avoid;   /* ← magic! */
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
}



