:root{
	--title-color: #262626;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	font-size: 16px;
	font-weight: normal;
	font-family: "Geist", sans-serif;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6{
	color: var(--title-color);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.8em;
}
h1{
	font-size: 36px;
}
h2{
	font-size: 24px;
}
h3{
	font-size: 20px;
}
h4{
	font-size: 18px;
}
h5{
	font-size: 16px;
}
h6{
	font-size: 14px;
}
a{
	color: #737373;
	text-decoration: none;
	transition: 0.3s;
}
a:hover,
a:focus,
a:active {
	color: var(--title-color);
}

a:focus {
	outline: thin dotted;
}

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

/*==============
 Header
================*/

.site-header .menu-wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.site-header .menu-wrapper .site-title{
	margin-bottom: 0;
}
.site-header .menu-wrapper .site-title a{
	color: var(--title-color);
}
.site-header .menu-wrapper ul li{
	margin-right: 15px;
}
.site-header .menu-wrapper ul li a{
	color: #171717;
	font-size: 14px;
	font-weight: 500;
	padding: 30px 0;
}

/*==============
 Front Page
================*/

.front-interface{
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - (var(--header-height, 82px) + var(--footer-height, 64px)));
}
.main-search form{
	position: relative;
	display: flex;
	gap: 10px;
	max-width: 400px;
	margin: auto;
}
.main-search form input{
	font-size: 14px;
	outline: 0;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	width: 80%;
	padding: 8px 18px;
}
.main-search form button{
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	width: 20%;
	border: 0;
	outline: 0;
	background-color: #171717;
	padding: 0;
	border-radius: 6px;
}
.main-search form #search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  max-height: 250px;
  overflow-y: auto;
  z-index: 9999;
  display: none;
}
.main-search form #search-suggestions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-search form #search-suggestions li {
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.main-search form #search-suggestions li:hover {
  background: #f5f5f5;
}
.main-search form #search-suggestions mark {
  background: #ffeb3b;
  color: #000;
  font-weight: bold;
  padding: 0 2px;
}

/*==============
 Breadcrumb
================*/

.breadcrumb-area{
	padding: 20px 0;
	text-align: center;
}
.breadcrumb-area .site-breadcrumb{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.breadcrumb-area .site-breadcrumb a{
	color: #737373;
	font-size: 14px;
}
.breadcrumb-area .site-breadcrumb a:hover{
	color: var(--title-color);
}
.breadcrumb-area .site-breadcrumb span{
	color: var(--title-color);
	font-size: 14px;
}

/*==============
 Blog Details
================*/

.site-main{
	padding: 100px 0;
}
article{
	border: 1px dashed #c4c1c1;
	padding: 30px;
	border-radius: 10px;
}
pre{
	margin: 1em 0;
}
code{
	display: inline-block;
	background: #f3f3f3;
  color: #444;
  padding: 5px 10px;
  border-radius: 3px;
}
.wp-block-separator{
	border-top: 1px dashed;
	margin: 45px 0;
	height: auto;
	background-color: #fff;
}

/* Sidebar */

.widget-area .widget{
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	padding: 30px 25px;
}
.widget-area .widget ul{
	margin: 0 0 0 15px;
	padding: 0;
	list-style: disc;
}
.widget-area .widget ul li{
	margin-bottom: 8px;
}
.widget-area .widget ol{
	padding-left: 17px;
}
.widget-area .widget ol li{
	list-style: decimal;
}

/* Comment Area */

.comments-area .comment-form input[type="submit"]{
	color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  outline: 0;
	background-color: #171717;
	border-radius: 6px;
	padding: 13px 20px;
}

/*==============
 Footer
================*/

.site-footer{
	background-color: #f3f3f3;
	padding: 20px 0;
}
.site-footer .site-info{
	text-align: center;
}