#wrapper,
#main,
#main {
	background-color: #f9efe6;
}
#access {
	width: 100% !important;
}
#wrapper,
#main,
#branding,
#colophon {
	max-width: 1300px;
	margin: 0 auto;
	width: 100%;
}
#branding img {
	width: 100% !important;
		height: auto !important;
}
.entry-content {
	color: #000000;
}
/* Убираем стандартные точки */
.wp-block-separator.is-style-dots:before {
    display: none !important;
}

/* Делаем сам разделитель flex-контейнером */
.wp-block-separator.is-style-dots {
    border: none !important;
    background: transparent !important;
    height: 80px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 20px 0 !important;
}

/* Вставляем картинку как background к :after */
.wp-block-separator.is-style-dots:after {
    content: "" !important;
    display: block !important;
    width: 60px !important; /* ← меняйте размер здесь */
    height: 90px !important; /* ← можно поменять */
    background-image: url(https://iluxin.ca/wp-content/uploads/2026/03/dot.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    flex-shrink: 0 !important;
}
/* Декоративный разделитель в виде картинки */
.post {
    background-image: url(https://iluxin.ca/wp-content/uploads/2026/03/Untitled-4.png);
    background-repeat: no-repeat;
    background-position: bottom center;
	background-size: 500px 30px;
    padding-bottom: 110px;
    margin-bottom: 60px;
}

/* Настройка абзацев в постах */
.entry-content p {
    margin-bottom: 10px !important; /* отступ между абзацами */
    margin-top: 0 !important;
    text-indent: 27px !important; /* красная строка */
}
/* Выключка по ширине + правильные переносы для русского языка */
.entry-content p,
#content p,
.post p {
    text-align: justify;
    hyphens: auto;
    word-break: break-word;
}
/* Text shaddowing */
.entry-content p {
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.08);
}

.entry-content q {
    quotes: "«" "»" "„" "“";
}

.entry-content q::before {
    content: "«";
}
/* Усиленный вариант для Twenty Ten */
h2.home-posts-title,
.home-posts-title {
    text-align: center !important;
    font-size: 24px !important;
    font-weight: normal !important;
    letter-spacing: 2px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 35px;
    margin-bottom: 50px; !important
    font-family: 'Georgia', 'Times New Roman', serif !important;
}
/* Отступ после всего блока с заголовком */
#content h2.home-posts-title {
    margin-bottom: 60px !important;
}
/* Переставляем дату над заголовком через CSS Grid */
.post {
    display: grid;
    grid-template-areas: 
        "meta"
        "title"
        "content";
}

.entry-meta {
    grid-area: meta;
	margin-bottom: 20px;
}

.entry-title {
    grid-area: title;
    margin-top: 0 !important;
}

.entry-content {
    grid-area: content;
}
/* Делаем "Читать далее" частью текста */
.more-link {
    display: inline !important;
    white-space: nowrap;
	margin-left: 10px;
}
.entry-content p:last-of-type {
    display: inline;
}
/* Отступ у последнего абзаца с "Читать далее" */
.entry-utility {
    margin-top: 30px !important;
}