.wrap {
	padding-top: 100px;
}

.content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	grid-gap: 30px;
	align-items: start;
}

.content-grid .sidebar {
	grid-column: 2;
	grid-row: 1 / -1;
}

.content-grid .sidebar>ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.content-grid .sidebar>ul>li {
	padding: var(--theme-block-padding);
	margin-bottom: var(--theme-block-margin-bottom);
	background-color: var(--theme-section-bg);
	border-radius: var(--theme-rounded-section)
}

.welcome-section {
	background-size: cover
}

.welcome-section {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	grid-gap: 34px;
	align-items: center;
	padding: var(--theme-block-padding);
	margin-bottom: var(--theme-margin-section);
	color: var(--theme-color-style3);
	background-color: var(--theme-color-secondary);
	border-radius: var(--theme-rounded-section)
}

.welcome-section .welcome-section__container .title {
	font-weight: 900;
	text-transform: uppercase
}

.welcome-section .welcome-section__container .title h1 {
	margin-bottom: 0
}

.welcome-section .welcome-section__container .description {
	font-size: 18px;
	font-weight: 600;
	line-height: 140%;
	margin-top: 10px
}

.welcome-section .welcome-section__container .welcome-section__buttons {
	margin-top: 24px
}

.welcome-section .welcome-section__container .apps_buttons {
	display: grid;
	grid-template-columns: repeat(2, 200px);
	grid-gap: 15px
}

.welcome-section .welcome-section__container .apps_buttons button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px
}

.welcome-section .welcome-section__container .apps_buttons button>span {
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: normal;
	font-size: 12px;
	font-weight: 700
}

.welcome-section .welcome-section__container .apps_buttons button>span>span:nth-child(1) {
	font-size: 10px;
	font-weight: 400
}

.welcome-section .image {
	text-align: center
}

.welcome-section .image img {
	border-radius: var(--theme-rounded-images);
	width: 100%;
	height: auto;
	max-width: 356px;
	max-height: 250px;
	object-fit: cover;
	object-position: center
}

.welcome-section.no_image {
	grid-template-columns: none
}

.author-section {
	position: relative;
	margin: var(--spacing-xl) 0;
	padding: 14px var(--spacing-lg);
	border-radius: var(--border-radius-lg);
	background: var(--theme-body-bg);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.04);
	-webkit-backdrop-filter: blur(6px) saturate(120%);
	backdrop-filter: blur(6px) saturate(120%);
}

.author-info {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	background: radial-gradient(60% 60% at 50% 40%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
	box-shadow: var(--shadow-sm);
	outline: 2px solid rgba(9, 88, 198, 0.8);
	outline-offset: 2px;
}

.author-verified {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-green);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--theme-section-bg);
	margin-left: calc(-1 * var(--spacing-md));
}

.author-details {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	flex-wrap: wrap;
}

.author-name {
	color: white;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
	cursor: pointer;
}

.author-title {
	color: var(--theme-color-accent);
	font-size: 12px;
	padding: 2px var(--spacing-sm);
	border-radius: var(--border-radius-xl);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.content-meta {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	flex-wrap: wrap;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
}

.last-updated {
	color: var(--theme-color-accent);
}

.last-updated::before {
	content: '⏰';
	margin-right: 6px;
}

.fact-checked {
	color: var(--color-green);
	font-weight: 600;
	background: rgba(16, 185, 129, 0.12);
	border: 1px solid rgba(16, 185, 129, 0.35);
	padding: 2px var(--spacing-sm);
	border-radius: var(--border-radius-xl);
}

@media (max-width: 640px) {
	.author-section {
		margin: var(--spacing-lg) 0;
		padding: var(--spacing-md);
	}

	.author-avatar {
		width: 40px;
		height: 40px;
	}

	.content-meta {
		gap: var(--spacing-sm);
	}
}

@media (max-width:991px) {
	.wrap {
		padding-top: 100px;
	}

	.welcome-section {
		grid-template-columns: none;
		grid-gap: 24px;
		padding: var(--theme-block-padding-mob);
		margin-bottom: var(--theme-margin-section-mob)
	}

	.welcome-section .welcome-section__container .description {
		font-size: 16px
	}

	.welcome-section .welcome-section__container button {
		width: 100%;
		min-width: auto
	}

	.welcome-section .welcome-section__container .apps_buttons {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px
	}

	.welcome-section .image {
		order: -1
	}

	.welcome-section .image img {
		max-width: 100%;
		height: auto;
		max-height: none
	}
}

@media (max-width:991px) {
	.content-grid {
		display: block;
		grid-template-columns: none
	}

	.content-grid .sidebar {
		display: none
	}
}

/* Responsive images optimization */
.pros-cons-image img {
	width: 100%;
	height: auto;
	max-width: 356px;
	max-height: 250px;
	object-fit: cover;
	object-position: center;
	border-radius: var(--theme-rounded-images)
}

@media (max-width: 600px) {

	.welcome-section .image img,
	.pros-cons-image img {
		max-width: 100%;
		height: auto
	}
}

@media (max-width: 480px) {

	.welcome-section .image img,
	.pros-cons-image img {
		max-width: 100%;
		max-height: none;
		height: auto
	}
}