.main-slider {
	margin-bottom: 2rem;
}

.main-slider .slide {
	position: relative;
	height: 550px;
}

.main-slider .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-slider .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
	display: flex;
	align-items: flex-end;
}

.main-slider .inner {
	width: 100%;
	padding: 3rem 2rem;
}

.main-slider .content h3 {
	color: rgba(255, 255, 255, 0.95);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0.5rem;
}

.main-slider .content h2 {
	color: white;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}


.h24-news {
	padding: 3rem 0;
}

.h24-news .heading h3,
.h24-news .heading h2,
.h24-news .heading h4 {
	font-weight: 700;
	line-height: 1.2;
}

.h24-news .heading h3 {
	font-size: 1.75rem;
}

.h24-news .heading h2 {
	font-size: 2.5rem;
}

.h24-news .heading h4 {
	font-size: 1.25rem;
}

.h24-news .slider img {
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.h24-news .slider img:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	transform: translateY(-3px);
}


.masonry-grid {
	padding: 3rem 0;
}

.panel-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	margin-bottom: 1rem;
}

.panel-item:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	transform: translateY(-3px);
}

.panel-item.big .inner {
	height: 600px;
}

.panel-item.medium .inner {
	height: 290px;
}

.panel-item.small .inner {
	height: 400px;
}

.panel-item .inner {
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	transition: transform 0.5s ease;
}

.panel-item:hover .inner {
	transform: scale(1.03);
}

.panel-item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
}

.panel-item .overlay .category-badge,
.panel-item .overlay h5 {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.813rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 0.5rem;
	display: block;
}

.panel-item .overlay h3 {
	color: white;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.panel-item .buttons {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.panel-item .buttons .btn,
.panel-item .buttons .button-main {
	padding: 0.5rem 1.25rem;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.813rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.panel-item .buttons .btn {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
}

.panel-item .buttons .btn:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
}

.panel-item .buttons .button-main {
	background: #007bff;
	border: 1px solid #007bff;
	color: white;
}

.panel-item .buttons .button-main:hover {
	background: #0056b3;
	border-color: #0056b3;
}


.daily-pics {
	padding: 3rem 0;
	background: #f8f9fa;
}

.heading-underline {
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.heading-underline h2,
.heading-underline h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0;
}

.heading-underline h2 span,
.heading-underline h3 span {
	color: #007bff;
}

.heading-underline hr {
	flex: 1;
	margin: 0 1rem;
	border-top: 2px solid #dee2e6;
}

.heading-underline .button-main {
	background: #007bff;
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	border: none;
}

.heading-underline .button-main:hover {
	background: #0056b3;
}

.daily-pics .row.g-3 a {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.daily-pics .row.g-3 a:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	transform: translateY(-3px);
}

.daily-pics .row.g-3 img {
	width: 100%;
	height: auto;
	display: block;
}


.instagram {
	padding: 3rem 0;
	background: #333;
}

.instagram h2,
.instagram h3 {
	color: white;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.instagram h2 i,
.instagram h3 i {
	color: #E1306C;
	margin-right: 0.5rem;
}

.instagram .pictures {
	margin: 2rem 0;
}

.instagram .btn-outline-secondary {
	border-color: #fff;
	color: #fff;
	padding: 0.625rem 1.5rem;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.instagram .btn-outline-secondary:hover {
	background: white;
	color: #333;
}


@media (max-width: 991px) {
	.main-slider .slide {
		height: 450px;
	}

	.main-slider .content h2 {
		font-size: 2rem;
	}

	.h24-news .heading h2 {
		font-size: 2rem;
	}

	.h24-news .heading h3 {
		font-size: 1.5rem;
	}

	.panel-item.big .inner {
		height: 450px;
	}

	.panel-item.medium .inner {
		height: 250px;
	}

	.panel-item.small .inner {
		height: 350px;
	}

	.heading-underline h2,
	.heading-underline h3 {
		font-size: 1.5rem;
	}
}

@media (max-width: 767px) {
	.main-slider .slide {
		height: 350px;
	}

	.main-slider .inner {
		padding: 2rem 1.5rem;
	}

	.main-slider .content h2 {
		font-size: 1.75rem;
	}

	.main-slider .content h3 {
		font-size: 0.75rem;
	}

	.h24-news {
		padding: 2rem 0;
	}

	.h24-news .heading h2 {
		font-size: 1.75rem;
	}

	.h24-news .heading h3 {
		font-size: 1.25rem;
	}

	.h24-news .heading h4 {
		font-size: 1rem;
	}

	.masonry-grid,
	.daily-pics {
		padding: 2rem 0;
	}

	.panel-item.big .inner,
	.panel-item.medium .inner,
	.panel-item.small .inner {
		height: 300px;
	}

	.panel-item .overlay {
		padding: 1rem;
	}

	.panel-item .overlay h3 {
		font-size: 1.125rem;
	}

	.heading-underline {
		flex-direction: column;
		align-items: flex-start;
	}

	.heading-underline h2,
	.heading-underline h3 {
		font-size: 1.375rem;
	}

	.heading-underline hr {
		display: none;
	}

	.instagram {
		padding: 2rem 0;
	}

	.instagram h2,
	.instagram h3 {
		font-size: 1.375rem;
	}
}


.sidebar-panel {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.sidebar-panel:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.sidebar-panel + .sidebar-panel {
	margin-top: 1.25rem;
}

.sidebar-panel__header {
	display: flex;
	align-items: center;
	padding: 1rem 1.25rem 0;
}

.sidebar-panel__accent {
	width: 3px;
	height: 18px;
	background: #007bff;
	border-radius: 2px;
	margin-right: 0.625rem;
	flex-shrink: 0;
}

.sidebar-panel__title {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	color: #212529;
	margin: 0;
	line-height: 1;
}

.sidebar-panel__body {
	padding: 1rem 1.25rem;
}

.sidebar-panel__footer {
	padding: 0 1.25rem 1.25rem;
}


.category-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.category-chip {
	display: inline-block;
	padding: 0.3rem 0.7rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: #495057;
	background: #f4f6f8;
	border: 1px solid #e9ecef;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.2s ease;
	line-height: 1.4;
}

.category-chip:hover {
	background: #007bff;
	border-color: #007bff;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(0, 123, 255, 0.25);
}

.category-chip--creative {
	background: #fffbeb;
	border-color: #fde68a;
	color: #92400e;
}

.category-chip--creative .fa-star {
	font-size: 0.5625rem;
}

.category-chip--creative:hover {
	background: #f59e0b;
	border-color: #f59e0b;
	color: #fff;
	box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
}


.sidebar-trust .trust-item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 0.75rem 0;
}

.sidebar-trust .trust-item + .trust-item {
	border-top: 1px solid #f5f5f5;
}

.trust-item__icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	color: #226b9a;
	font-size: 0.875rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.trust-item:hover .trust-item__icon {
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	transform: scale(1.05);
}

.trust-item__heading {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #212529;
	line-height: 1.3;
	margin-bottom: 2px;
}

.trust-item__text {
	font-size: 0.75rem;
	color: #6b7280;
	line-height: 1.45;
	margin: 0;
}


.sidebar-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.65rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #226b9a;
	background: #f0f7ff;
	border: 1px solid #dbeafe;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.sidebar-cta:hover {
	background: #226b9a;
	border-color: #226b9a;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(34, 107, 154, 0.2);
}

.sidebar-cta .fa {
	transition: transform 0.3s ease;
}

.sidebar-cta:hover .fa {
	transform: translateX(3px);
}
