/**
Theme Name: rodo
Author: poroolyosh
Version: 1.0.0
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

main {
	display: block;
	margin-top: 2rem;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Variable
 * --------------------------------------------- */

:root {
	--data-area-width: 1280px;
	--rodo-radius: 8px;	
	--color-light-gray: #EDF1FF;
	--color-primary: #051B40;
	--color-accent: #BD0A57;
	--color-action: #D1224B;
	--color-hover: #9AB2F2;
	--color-dark: #06021A;
	--my-shadow: 0 0 7px #00000047;
	--my-shadow-hover: 0 0 9px #0000006e;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body, button,
input, select,
optgroup, textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3,
h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd,
tt, var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #f4f6f7;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

a:visited {
	color: #800080;
}

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

.site-title a {
	text-decoration: none;
	font-weight: bold;
	color: var(--color-dark);
}

.site-title a:hover {
	color: var(--color-gray);
}

.entry-title a {
	text-decoration: none;
	color: var(--color-dark);
}
.entry-title a:hover {
	color: var(--color-primary);
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	padding-block: 5px;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: flex;
	text-decoration: none;
	font-weight: 600;
	color: var(--color-dark);
	transition: all 1s ease-in-out;
}

.main-navigation a:hover {
	color: var(--color-gray);
	text-decoration: underline;
}

.navigation.pagination {
	margin-top: 2rem;
}

.nav-links {
	display: flex;
	gap: 12px;
}

.nav-links a,
.nav-links span {
	padding: 4px 8px;
	border-radius: 3px;
	text-decoration: none;
	color: #ffffff;	
}

.nav-links a {
	background-color: var(--color-primary);
}

.nav-links a:hover {
	background-color: var(--color-gray);
}

.nav-links span {
	background-color: var(--color-gray);
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}
.menu-toggle {
  position: absolute;
  right: 10px;
  top: 40px;
  padding: 18px 6px;
  z-index: 5;
  cursor: pointer;
  user-select: none;
  border: none;
  background: transparent;
    }
.menu-toggle span {
  height: 3px;
  width: 35px;
  border-radius: 2px;
  background-color: var(--color-dark);
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;	
}
.menu-toggle span:before {
  top: -10px;
  visibility: visible;	
}
.menu-toggle span:after {
  top: 10px;	
}
.menu-toggle span:before, .menu-toggle span:after {
  height: 3px;
  width: 35px;
  margin-left: -18px;
  border-radius: 2px;
  background-color: var(--color-dark);
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;	
}

.toggled .menu-toggle span {
	background: transparent;
}

.toggled .menu-toggle span:before {
	transform: rotate(45deg) translate(7px, 7px);
	opacity: 1;
}

.toggled .menu-toggle span:after {
	transform: rotate(-45deg) translate(7px, -7px);	
}

.toggled .menu-menu-header-container {
	position: absolute;
    right: 3rem;
    background: var(--color-light-gray);
    padding: 1rem;
	border-radius: var(--rodo-radius);
}


@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
		gap: 1rem;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.site {
	display: flex;
	flex-direction: column;
	margin-inline: auto;
	max-width: var(--data-area-width);
}

.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.25em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.entry-title {
	font-size: clamp(16px, 2vw, 20px);
}

.archive-site-main .book {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-light-gray);
}

.book-content {
	display: flex;
	gap: 2em;
	align-items: flex-start;
}

.book-content .entry-content {
	margin-top: 0;
}

.to-buy-book {
	font-weight: 700;
	margin-bottom: 0;
	color: var(--color-gray);
}

.category-news-site-main {
	max-width: 800px;
	margin-inline: auto;
}

.category-news-site-main article {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-light-gray);	
}


/* Header
--------------------------------------------- */

.site-header,
.widget-area {
	margin-top: 2rem;
	padding-inline: 1rem;
	background: var(--color-light-gray);
	border-radius: var(--rodo-radius);
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-branding {
	display: flex;
	gap: 2rem;
	align-items: center;
	padding-block: 1rem;
}

.site-title {
	font-size: clamp(12px, 2vw, 18px);
}

.site-after {
	width: 50px;
	height: 25px;
}

/* Main
--------------------------------------------- */

.site-slogan-block {
	color: var(--color-light-gray);
}

.site-slogan-block-two {
	margin-top: 1rem;
}

.site-slogan-title {
	margin: 0;
}

.site-slogan-description {
	margin-top: 0.5rem;
}


/* Homepage-Book-block
--------------------------------------------- */

.homepage-book-block {
    display: flex;
    gap: 1rem;
	margin: 0 0 1.5em;
}

.homepage-book-block img {
	box-shadow: var(--my-shadow);
 	transition: .2s;
}

.homepage-book-block img:hover {
	box-shadow: var(--my-shadow-hover);
}

.btn-rodo {
	margin-top: 1em;
}

.btn-rodo a {
	text-decoration: none;
	background-color: var(--color-primary);
	color: white;
	padding: 4px 12px;
	border-radius: 3px;
	transition: all 0.2s ease-in-out;
}

.btn-rodo a:hover,
.btn-rodo a:active {
	background-color: var(--color-gray);
	color: white;	
}

.btn-readmore a {
	padding: 2px 10px;
	
}

/* Homepage-News-block
--------------------------------------------- */

.category-blog-site-main {
	max-width: 1100px;
	margin: 0 auto;
}

.homepage-news-block {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2em;
}

article {
	border-radius: var(--rodo-radius);
	background-color: var(--color-light-gray);	
}

.homepage-news-block article {
	width: 32%;
	overflow: hidden;
}

.newsblock-entry-header,
.newsblock-entry-content {
	padding: 0 10px;
}

.homepage-news-block .newsblock-entry-header .entry-title a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient:vertical;  
  overflow: hidden;
}

.homepage-news-block .entry-content p {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient:vertical;  
	overflow: hidden;
	color: var(--color-gray);
}

.homepage-news-block article a,
.homepage-news-block article img {
	transition: 0.5s;	
}

.homepage-news-block article a {
	filter: brightness(75%);
}

.homepage-news-block article a:hover,
.homepage-news-block article a:focus {
	filter: brightness(100%);
}

.image-wrap {
    position: relative;
}

.category-video .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    cursor: pointer;
}

.category-video .play-button::before {
    content: '';
    position: absolute;
    top: 14px; /* Отступ сверху для плашки "play" */
    left: 12px; /* Отступ слева для плашки "play" */
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 30%;
    clip-path: polygon(100% 50%, 30% 15%, 30% 85%);
}

.homepage-news-block article img {
	filter: grayscale(15%);
}

.homepage-news-block article img:hover,
.homepage-news-block article img:focus {
	filter: grayscale(0%);
}

.homepage-news-block .btn-readmore {
	display: none;
}

.newsblock-entry-header .entry-title,
.newsblock-entry-content {
	margin: 0.5em 0;
}

/* Single-page & Single-post
--------------------------------------------- */

.page-site-main article,
.single-site-main article {
	padding: 1rem;
}

/* Widget-area
--------------------------------------------- */
.widget-area {
	display: flex;
	gap: 1.5em;
	margin: 2em 0 0;
	padding-top: 1rem;
	border-top: 1px solid var(--color-light-gray);
}

.widget-area section {
	width: calc(33% - 1em);
}


/* Footer
--------------------------------------------- */

.site-info p {
	color: var(--color-light-gray);
	margin-bottom: 0;
}


/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
	max-width: 160px;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* Media queries
--------------------------------------------- */

@media screen and (max-width: 1201px) {
	.site {
		padding: 0 10px;
	}
}

@media screen and (max-width: 781px) {
	.homepage-book-block {
		flex-wrap: wrap;
		justify-content: center;
	}
	.homepage-book-block article {
		width: calc(33% - 0.75rem);
	}
	.book-content img {
		width: 180px;
	}
}

@media screen and (max-width: 600px) {
	.homepage-news-block article {
		width: calc(100%);
	}
	.book-content {
		flex-direction: column;
		gap: 1em;
	}
	.book-content img {
		width: 100%;
	}
	.widget-area {
		flex-direction: column;
	}
	.widget-area section {
		width: 100%;
	}
}

@media screen and (max-width: 461px) {
	.homepage-book-block article {
		width: calc(50% - 1rem);
	}
}
