footer .widget-articles a {
    font-size: 0.8em;
}
footer .widget-articles article {
    margin-bottom: 5px;
}
/* Стилизация элемента details - для FAQ */
details {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Стилизация вопроса (summary) */
details summary {
    background-color: #f5f5f5; /* Светлосерый фон */
    padding: 15px;
    cursor: pointer;
    list-style: none; /* Убираем стандартный маркер */
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    position: relative;
}

/* Добавляем кастомный плюс/минус */
details summary::-webkit-details-marker {
    display: none; /* Скрываем стандартный маркер в Chrome/Safari */
}

details summary::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: #666;
    transition: transform 0.3s ease;
}

/* Меняем плюс на минус при открытии */
details[open] summary::after {
    content: '−'; /* Минус */
    transform: translateY(-50%);
}

/* Эффект при наведении */
details summary:hover {
    background-color: #e9e9e9;
}

/* Стилизация содержимого ответа */
details > p:first-of-type {
    margin-bottom: 5px;
    padding: 20px;
    background-color: white;
    border-left: 3px solid #f5f5f5;
    border-right: 3px solid #f5f5f5;
    border-bottom: 3px solid #f5f5f5;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* Анимация содержимого - при разворачивании FAQ */
details > p:first-of-type {
    padding: 0 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

details[open] > p:first-of-type {
    padding: 20px;
    max-height: 1000px; /* Достаточно большое значение */
    opacity: 1;
    animation: slideDown 0.3s ease;
}
.la_bio {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.la_bio .author-avatar img {
    max-width: 200px;
}
.la_author_h2 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.wp-theme-soledad .posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.wp-theme-soledad .posts-grid article {
    width: 48%;
}
.la_author-posts img {
    margin-bottom: 10px;
}
.la_author-posts .post-card__title {
    margin-bottom: 10px;
}
.download-btn {
    display: table !important;
    margin: 0 auto;
    margin-bottom: 20px;
}
.download-btn i {
    transform: rotate(180deg);
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.comment-form-privacy {
	display: flex;
	font-size: .8em;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 0 !important;
    margin-bottom: 15px !important;
}
.comment-form-privacy input[type=checkbox] {
    margin-right: 10px !important;
}
.comment-form-privacy label {
    margin-bottom: 0 !important;
}
.comment-form-privacy::before {
	content: unset;
}

.wpcf7-form  {
	max-width: 800px;
}
.wpcf7-form input, .wpcf7-form textarea {
    border-radius: 4px;
}
.wpcf7-form .wpcf7-form-control-wrap {
    margin-bottom: 1rem;
    display: inline-block;
}
.wpcf7-form .wpcf7-form-control-wrap:has(.username), .wpcf7-form .wpcf7-form-control-wrap:has(.usermail) {
	width: 49%;
}
.wpcf7-form .wpcf7-form-control-wrap:has(.username) {
	float: left;
}
.wpcf7-form .wpcf7-form-control-wrap:has(.usermail) {
    float: right;
}
.wpcf7-form input {
    max-width: 100%;
}
.wpcf7-form .wpcf7-form-control-wrap:has(textarea) {
    width: 100%;
    height: 150px;
}
.wpcf7-form textarea {
    width: 100%;
    max-height: 100%;
}
.wpcf7-list-item {
	margin-left: 0;
}
.wpcf7-acceptance input[type="checkbox"] {
	width: auto;
	margin-bottom: 0;
}
.wpcf7-acceptance label {
	display: flex;
	gap: 10px;
	line-height: 18px;
	align-items: center;
	font-size: 15px;
}
.wpcf7-form .cftitle {
    text-align: center;
	font-size: 40px;
    font-weight: 900;
	line-height: 47px;
}
@media (max-width:500px) {
	.wpcf7-form .wpcf7-form-control-wrap:has(.username), .wpcf7-form .wpcf7-form-control-wrap:has(.usermail) {
		width: 100%;
	}
	.wpcf7-form .wpcf7-form-control-wrap input {
		width: 100%;
	}
	.wpcf7-form .wpcf7-form-control-wrap input[type="checkbox"] {
        width: auto;
    }
}
@media (max-width: 767px) {
    .la_bio {
        flex-direction: column;
    }
    .wp-theme-soledad .posts-grid article {
        width: 100%;
    }
}