/*
Theme Name: Fider
Theme URI: http://example.com
Description: Базовая тема для WordPress
Version: 1.0
Author: Your Name
Text Domain: mytheme
*/

/* Базовые сбросы стилей */
:root {
    --bg-page: #FCFCFC;
    --bg-card-grey: #e9e9ee;
    --primary: #7F3BF1;
    --primary-soft: #f2e9ff;
    --text-main: #202020;
	--text-light: #696868;
    --border-soft: #e5e7eb;
    --radius-lg: 16px;
    --radius-xl: 23px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}
.breadcrumb_last {
	color: var(--primary); 
}
#breadcrumbs {
	margin-top: 10px;
	margin-bottom: 15px;
}
img {
	width: 100%;
	height: auto;
}
.city-select {
	font-family:'Montserrat', sans-serif;
	border: none;
}
.city-select:focus {
	outline: none;
}
/* Бургер-кнопка */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 34px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.burger-menu {
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.burger-menu span {
    display: flex;
    align-items: center;
    gap: 3.41px;
    height: 3px;
}

/* Сами линии (основная часть) */
.burger-menu span::before {
    content: '';
    width: 4.97px;
    height: 3px;
    background-color: #202020;
    border-radius: 3px;
    display: inline-block;
}

/* Длинное продолжение */
.long-line::after {
    content: '';
    width: 25.63px;
    height: 3px;
    background-color: #202020;
    border-radius: 3px;
    display: inline-block;
}

.short-line::after {
    content: '';
    width: 21.86px;
    height: 3px;
    background-color: #202020;
    border-radius: 3px;
    display: inline-block;
}

/* Анимация бургера в крестик */
.burger-menu.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Затемнение фона */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Мобильное меню */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: left 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

/* Шапка мобильного меню */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.mobile-nav-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-menu {
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: #666;
    transition: color 0.3s;
}

.close-menu:hover {
    color: #333;
}

/* Навигационное меню */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 15px;
}

.mobile-nav-list a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s;
}

.mobile-nav-list a:hover {
    color: #007bff;
}

/* Кнопки в мобильном меню */
.mobile-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-actions button {
    width: 100%;
    padding: 12px;
}

/* ===== Общий каркас ===== */

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
	padding: 26px 0px 137px;
}
.container {
	margin: 0 auto;
    max-width: 1400px;
	width: 100%;
    position: relative;
}
.main-container {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 45px;
}
.archive-container {
	display: grid;
    grid-template-columns: minmax(200px, 220px) 749px 1fr;
    gap: 25px;
}

/* ===== Верхняя панель (шапка) ===== */

.topbar {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 45px;
}
header {
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	padding: 16px 0;
}

/* Логотип в шапке */
.topbar .logo {
    width: 184px;
	height: auto;
}
#weather {
	display: flex;
	gap: 21px;
	align-items: center;
}
#city {
	font-size: 16px;
	color: var(--text-light);
	font-weight: 400;
}
#icon {
	width: 30px;
	height: auto;
}
#temp {
	font-size: 14px;
	font-weight: 600;
}
.temperatura {
	display: flex;
	align-items: center;
	gap: 6px;
}
.topbar .logo__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.topbar .logo__title {
    font-weight: 700;
    font-size: 22px;
}
.rates {
	display: flex;
	align-items: center;
	gap: 20px;
}
.usd::before {
	content: "";
	background: url('assets/icons/usd.svg');
	background-size: contain;
	width: 20px;
	height: 20px;
	display: inline-block;
}
.eur::before {
	content: "";
	background: url('assets/icons/eur.svg');
	background-size: contain;
	width: 20px;
	height: 20px;
	display: inline-block;
}
.rub::before {
	content: "";
	background: url('assets/icons/rub.svg');
	background-size: contain;
	width: 20px;
	height: 20px;
	display: inline-block;
}
.rates span {
	display: flex;
	gap: 4px;
	align-items: center;
	color: #696868;
	font-size: 14px;
}

/* Поиск в шапке */
.search {
	display: flex;
	width: 100%;
}
#searchwp-form-1 {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 43px;
	border: 1px solid #E5E2E2;
    padding: 14px 28px;
    max-width: 749px;
}
#searchwp-form-1 input {
	border: none;
	color: var(--text-light);
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}
#searchwp-form-1 input:focus {
	outline: none;
}

/* Кнопки в шапке */
.topbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.btn {
    border-radius: 43px;
    border: none;
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.15s transform ease, 0.15s box-shadow ease, 0.15s background-color ease;
}
.ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn  {
	background-color: #7F3BF1;
	border-radius: 9px;
	width: 100%;
	padding: 15px 24px;
	cursor: pointer;
	font-size: 14px;
    font-weight: 600;
	transition: 0.15s transform ease, 0.15s box-shadow ease, 0.15s background-color ease;
}
.ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn:focus, .alm-btn-wrap .alm-load-more-btn:hover {
	transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
	background: #7F3BF1!important;
}
.ajax-load-more-wrap .alm-listing {
	margin-bottom: 41px;
	margin-top: 24px;
}
.ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn.done, .alm-btn-wrap .alm-load-more-btn:disabled {
	background-color: #7F3BF1;
}
button {
	font-family: 'Montserrat', sans-serif;
}

.btn-primary-outline {
    background: #FFDD65;
    color: #202020;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
	padding: 15px 44px;
}

.btn:hover, .load-more-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

/* ===== Левое меню (aside) ===== */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 49px;
	position: relative;
}
.sidebar nav {
	position: sticky;
    top: 0;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav__item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 8px 10px;
    font-size: 16px;
	font-weight: 700;
    color: var(--text-main);
    transition: 0.15s background-color ease, 0.15s color ease, 0.15s transform ease;
}

.nav__item-icon {
    width: 27px;
    height: 27px;
}
.nav__item:hover {
    background: rgba(15, 23, 42, 0.03);
    transform: translateY(-1px);
    color: var(--text-main);
	border-radius: 999px;
}
.active-nav:hover {
	border-top-right-radius: 999px;
	border-bottom-right-radius: 999px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.sidebar__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 16px;
}

.sidebar__links a {
    padding: 4px 0;
}

/* ===== Основной контент ===== */

.content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* ===== Блок hero ===== */

.hero {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-top {
    display: flex;
   	gap: 14px;
	justify-content:space-between;
	
}

.hero-cards {
    display: grid;
    grid-template-columns: minmax(211px, 669px) minmax(150px, 211px) minmax(150px, 211px);
    gap: 16px;
}

.hero-card {
    width: 100%;
	height: 287px;
    border-radius: 23px;
    overflow: hidden;
}

.hero-card__bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
	height: 100%;
}

/* Затемнение */
.home-news__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
    z-index: 1;
}

.home-news__link {
    position: relative;
    z-index: 2;
    width: 100%;
    text-decoration: none;
}

.home-news__wrapper {
    padding: 40px;
}

.home-news__title {
    margin: 0;
    color: white;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
	position: relative;
	z-index: 2;
	width: 60%;
}

/* Адаптив */
@media (max-width: 768px) {
    .hero-card__bg {
        min-height: 400px;
    }
    
    .home-news__title {
        font-size: 1.5rem;
        max-width: 90%;
    }
    
    .home-news__wrapper {
        padding: 20px;
    }
}

/* ===== Основной контент (2 колонки) ===== */

.main-grid {
    display: grid;
    grid-template-columns: minmax(211px, 669px) minmax(316px, 1fr);
    gap: 21px;
    align-items: flex-start;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 33px;
}

.section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin-bottom: 35px;
}

.section__title {
    font-size: 32px;
    font-weight: 700;
}

.section__arrow {
    font-size: 28px;
	font-weight: 700;
}

/* ===== Карточка новости ===== */

.news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-card {
    display: grid;
    grid-template-columns: auto auto;
    gap: 26px;
    align-items: flex-start;
}

.news-card:not(:last-child) {
	margin-bottom: 24px;
}

.news-card__time {
    background: var(--primary);
    color: #fff;
    border-radius: 3px;
    padding: 3px 12px;
    font-size: 16px;
    font-weight: 600;
	display: inline-block;
	min-width: 75px;
	text-align: center;
}

.news-card__content p {
    font-size: 20px;
    color: #111827;
	font-weight: 700;
}

.news-card__stats-row {
    display: flex;
    align-items: center;
    gap: 10px;
	margin-top: 14px;
}

.news-card__stat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-card__stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.news-card__stat-dot--red {
    background: #f97373;
}

.news-card__stat-dot--yellow {
    background: #facc15;
}

.news-card__stat-dot--green {
    background: #22c55e;
}

.news-card__views {
    font-size: 16px;
	display: flex;
	gap: 6px;
	align-items: center;
	color: var(--text-light);
}
.news-card__views::before {
	content: "";
	background: url('./assets/icons/eye.svg');
	width: 16px;
	height: 8.63px;
	display: inline-block;
}

/* ===== Плитки справа ===== */

.afisha-item {
	height: 360px;
	border-radius: 23px;
	width: 100%;
    overflow: hidden;
}

/* ===== Секция "События" / "Спорт" ===== */

.section-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 121px;
    align-items: flex-start;
    margin-top: 10px;
}

.section__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 33px;
}

.tiles-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.tile-large {
    border-radius: 23px;
	width: 100%;
    overflow: hidden;
    height: 290px;
}

.news-card--single {
    margin-top: 6px;
}

/* ===== Секция "Недвижимость" ===== */
.apartment-poster {
	height: 100%;
	position: relative;
}
.news-card__views-white {
	position: absolute;
	top: 15px;
	right: 22px;
	color: #FFF;
	display: flex;
	gap: 6px;
	align-items: center;
}
.apartments-row .news-card__stats-row {
	margin-top: 0;
}
.news-card__views-white::before {
	content: "";
	background: url('./assets/icons/eye-white.svg');
	width: 16px;
	height: 8.63px;
	display: inline-block;
}

/* =====Подвал ===== */
footer {
	padding: 89px 0 129px;
	background: linear-gradient(to right, #F9F9F9, #F4EFF6);
}
.footer-links {
	display: flex;
	gap: 56px;
	justify-content: center;
}
.footer-links a {
	font-size: 16px;
	font-weight: 600;
}

/* ===== Новости архив ===== */
.rubrics {
	display: flex;
	flex-direction: column;
	gap: 21px;
}
.rubric-item {
	font-size: 20px;
	font-weight: 400;
	padding-left: 50px;
}
.active-rubric {
	background-color: var(--primary);
	color: #FFF;
	border-radius: 6px;
	padding: 10px 20px 10px 50px;
}
.archive-content {
	display: flex;
    flex-direction: column;
}
.back-link {
	display: flex;
	align-items: center;
}
.popular-news {
	width: 100%;
	height: 496px;
	border-radius: 23px;
	display: flex;
	align-items: flex-end;
	margin-bottom: 39px;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 2;
}
.popular-news::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    z-index: -1;
	border-radius: 23px;
}
.popular-news__overlay {
	padding: 35px 48px;
}
.popular-news__title {
	font-size: 32px;
	color: #FCFCFC;
	width: 70%;
}
.short-title {
	display: -webkit-box;
    -webkit-line-clamp: 2;      /* ← сколько строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;           /* важно */
    max-height: calc(1.3em * 2);
}
.short-content {
	display: -webkit-box;
    -webkit-line-clamp: 3;      /* ← сколько строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;           /* важно */
    max-height: calc(1.3em * 3);
	font-weight: 400;
	font-size: 16px;
	margin-top: 6px;
}
.popular-news__date {
	font-size: 16px;
	font-weight: 300;
	color: #FCFCFC;
	display: flex;
	align-items: center;
}
.popular-news__date::before {
	content:'';
	background: url('./assets/icons/time.svg');
	width: 21.51px;
	height: 21.51px;
	display: inline-block;
	margin-right: 10.49px;
}
.reading-time {
	font-size: 16px;
	font-weight: 300;
	color: #FCFCFC;
	margin: 12px 0 23px;
	display: flex;
	align-items: center;
}
.reading-time::before {
	content:'';
	background: url('./assets/icons/book.svg') no-repeat;
	width: 30px;
	height: 22px;
	display: inline-block;
	margin-right: 10.49px;
}
.post-data::before {
	content:'';
	background: url('./assets/icons/time.svg') no-repeat;
	width: 15px;
	height: 15px;
	display: inline-block;
	margin-right: 10.49px;
}
.popular-news__btn {
	color: #FFF;
	font-size: 14px;
	font-weight: 600;
	display: block;
}

/* ======Одиночная запись =====*/
.post-meta {
	display: flex;
	gap: 15px;
}
.post-meta span {
	color: #696868;
}
.news-card__content .post-tags {
	font-size: 16px;
	color: #696868;
	font-weight: 400;
}
.news-poster {
	width: 229px;
	height: 100%;
	position: relative;
	border-radius: 23px;
	background-size: cover;
}
.meta-info {
	display: flex;
	gap: 19px;
}

/* Preloader */
.news-preloader {
  border: 4px solid #f3f3f3; /* светлый фон */
  border-top: 4px solid #7F3BF1; /* цвет вращающегося сегмента */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  margin: 20px auto; /* центр по горизонтали */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sidebar-block__title {
	border-bottom: 1px solid #F4EFF6;
	padding: 19px 23px;
	background-color: #F6F6F6;
	border-top-left-radius: 23px;
	border-top-right-radius: 23px;
}
.sidebar-block__title h3 {
	width: 100%;
	border-radius: 6px;
	background-color: #F4EFF6;
	font-size: 20px;
	padding: 9px 15px;
	color: #202020;
	font-weight: 400;
}
.sidebar-block__content {
	background-color: #F6F6F6;
	padding: 17px 23px 33px;
	border-bottom-left-radius: 23px;
	border-bottom-right-radius: 23px;
}

.other-cat {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 22px;
}
.latest-post__image a img {
	width: 100%;
	height: 192px;
	border-radius: 23px;
	margin: 16px 0 14px;
	object-fit: cover;
	object-position: top;
}
.other-cat-item .short-content {
	-webkit-line-clamp: 4;
	max-height: calc(1.3em * 4);
}
.active-nav {
	border-left: 3px solid #7F3BF1;
}

.back-posts {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.single-news .popular-news {
	margin: 18px 0 22px;
}
.single-news__content {
	display: grid;
	 grid-template-columns: 1fr 0.5fr;
     gap: 20px;
}
.popular-sidebar .sidebar-block {
	border-bottom: none;
}
.news-card__meta {
	display: flex;
	gap: 26px;
	margin-bottom: 12px;
	align-items: center;
}
.auto-block, .apartments-row {
	margin-top: 34px;
}
.auto-block .news-poster {
	display: none;
}
.popular-news__meta {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 12px;
}
.popular-news__btn {
	border-radius: 23px;
	background-color: #7F3BF1;
	font-size: 14px;
	padding: 10px 20px;
}
.sport-block .poster img {
	height: 100%;
	border-radius: 23px;
	object-fit: cover;
}
.poster-vertical {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.popular-sidebar {
	margin-top: 20px;
}
.popular-sidebar .short-content {
	font-weight: 400;
	font-size: 20px;
	color: #202020;
	line-height: 1.2;
}
.popular-sidebar .news-card__stats-row {
	justify-content: flex-end;
}
.three-line {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: calc(1.3em * 3);
}

/* === ОБЩИЙ КОНТЕЙНЕР === */
#comments {
    margin-top: 50px;
    padding: 30px;
    background: #f9fafb;
    border-radius: 16px;
}

/* Заголовок */
#comments h2,
#comments h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* === СПИСОК КОММЕНТАРИЕВ === */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Один комментарий */
.comment {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* === АВАТАР === */
.comment-author img {
    border-radius: 50%;
    margin-right: 12px;
}

/* Имя автора */
.comment-author .fn {
    font-weight: 600;
    font-size: 15px;
}

/* Дата */
.comment-metadata {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

/* === ТЕКСТ === */
.comment-content {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* === КНОПКА ОТВЕТА === */
.reply a {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #7F3BF1;
    text-decoration: none;
    transition: 0.2s;
}

.reply a:hover {
    color: #005177;
    text-decoration: underline;
}

/* === ВЛОЖЕННЫЕ КОММЕНТАРИИ === */
.children {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 2px solid #eee;
}

/* === ФОРМА КОММЕНТАРИЯ === */
.comment-respond {
    margin-top: 40px;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
   	border: 2px solid #F5F0F7;
}

/* Поля */
.comment-respond input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.2s;
	margin-top: 7px;
}
.comment-respond textarea {
    width: 100%;
    min-height: 60px;
    padding: 12px 14px;
    margin-bottom: 15px;
    margin-top: 7px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.2s;
    overflow-y: hidden;
    resize: none;    
}

.comment-respond input:focus,
.comment-respond textarea:focus {
    border-color: #7F3BF1;
    outline: none;
}

/* Кнопка */
.comment-respond input[type="submit"] {
    background: #7F3BF1;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
	font-family: 'Montserrat', sans-serif;
}

.comment-respond input[type="submit"]:hover {
    background: #005177;
}
.single .post-tags {
	color: #696868;
	margin-top: 10px;
	border-bottom:1px solid #F4EFF6;
	padding-bottom: 13px;
}
.logged-in-as {
	display: none;
}
.comment-reply-title {
	margin-bottom: 10px;
}
.wpulike-animated-heart button.wp_ulike_btn {
	width: 20px;
	height: 20px;
	box-shadow: unset;
}
.wpulike-animated-heart .wpulike-svg-heart {
	width: 14px;
}
.wpulike-animated-heart .count-box {
	margin: 0 4px;
}
.wpulike-animated-heart button.wp_ulike_btn {
	background-color: transparent;
}
.comment-author {
	width: 30px;
}
.comment-meta {
	padding: 10px 15px;
	border-radius: 6px;
}
.post-reactions {
	border-radius: 6px;
	background-color: #F5F0F7;
	padding: 7px 47px;
	display: flex;
	justify-content: end;
	gap: 25px;
	margin-top: 30.75px;
}
.single-news__text p {
	padding: 15px 0;
}
.wpcf7-form {
	max-width: 691px;
	width: 100%;
	margin: 0 auto;
}
.wpcf7-submit {
	background-color: #7F3BF1;
	max-width: 473px;
	width: 100%;
	color: #FFF;
	font-size: 20px;
	font-weight: 700;
	border: none;
	height: 48px;
	padding: unset;
	display: block;
	margin: 50px auto 0;
	cursor: pointer;
}
.pum-title {
	margin-bottom: 24px!important;
}
form label {
	font-size: 16px;
}
.pum-container input, .pum-container textarea {
	border-radius: 10px;
	border: 2px solid #D0D0D0;
	padding: 17px 30px;
	width: 100%;
	margin: 5px 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	color: #202020;
}
input::placeholder {
	color: rgba(72, 72, 72, 0.5);
}
.wpcf7 input[type="file"] {
	border: none;
	padding: 0;
	border-radius: unset;
}
.ulp-form input[type=submit].ulp-button {
	background-color: #7F3BF1!important;
	border-radius: 10px!important;
}
.register-btn {
	color: #7F3BF1;
	text-decoration: underline;
	display: block;
	text-align: center;
}
.ulp-form .ulp-floating-input {
	border-radius: 10px!important;
	font-family: 'Montserrat', sans-serif;
}
.ulp-form .ulp-floating-input:hover:not(:disabled):not(.ulp-input-error):not(.ulp-input-success) {
	border-color:  #7F3BF1!important;
}
.entry-header {
	box-shadow: unset;
	padding: 60px 0 20px;
	margin: 0 auto;
	text-align: center;
	width: 100%;
}

/* === АДАПТИВ === */

@media (max-width: 1200px) {
	.page-container, .container {
		max-width: 1054px;
	}
	.main-container, .burger-menu {
		display: flex;
	}
	.topbar {
		display: flex;
		align-items: center;
	}
	.sidebar {
		display: none;
	}
	.page-container {
		padding: 26px 15px 34px;
	}
}

@media (max-width: 768px) {
    #comments {
        padding: 20px;
    }

    .comment {
        padding: 15px;
    }
	.main-grid {
		grid-template-columns: 1fr;
	}
}
