/*
Theme Name: My Custom Theme
Theme URI: http://example.com
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom, theme
*/

html,
body {
  width: 100%;
  height: 100%;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  margin: 0;
  padding: 0;
  background-color: #f3f3f3;
}
body {
  color: #222;
  font-size: 17px;
  font-display: swap;
  line-height: 1.8;
  overflow-y: scroll;
}

.site-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 30px;
}
.site-header .inside-header {
  width: 100%;
  max-width: 720px;
  height: 60px;
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  margin: 0 auto;
  margin-top: 20px;
  background-color: #fff;
  border-radius: 10px;
}
.site-header .mobile-navigation {
  display: none;
}
.site-header .logo {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding-left: 25px;
}
.site-header .logo a {
  color: #222;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
.site-header .main-navigation,
.site-header .menu-primary-container,
.site-header ul {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  margin: 0;
  padding: 0;
}
.site-header .main-navigation {
  padding-right: 10px;
}
.site-header ul {
  list-style: none;
}
.site-header ul li,
.site-header ul a {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
.site-header ul a {
  color: #333;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  padding: 0 15px;
  cursor: pointer;
}
.site-header ul a:hover {
  opacity: 0.8;
  transition: opacity 0.1s ease-in-out;
}

.site-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 10px 30px;
}
.site-grid .inside-grid {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 auto;
  gap: 10px;
}

.site-main {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.site-main .inside-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-category {
  padding: 25px 30px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
}
.site-category h1 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
.site-category .taxonomy-description p {
  color: #999;
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  padding-top: 10px;
}

.site-sidebar {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
  justify-content: flex-start;
  position: sticky;
  top: 0;
  gap: 10px;
}
.site-sidebar .sidebar-section {
  width: calc(100% - 60px);
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
}
.site-sidebar h2 {
  font-size: 17px;
  font-weight: bold;
  margin: 0 0 8px;
}
.site-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-sidebar li {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.site-sidebar li::before {
  content: "";
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  margin-right: 8px;
  background-color: #dcdcdc;
  border-radius: 50%;
}
.site-sidebar li:hover::before {
  background-color: #fc8b5c8f;
}
.site-sidebar li:hover a {
  color: #fc8b5c;
  text-decoration: underline;
}
.site-sidebar li a {
  color: #777;
  font-size: 15px;
  text-decoration: none;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 3px 0;
}

.site-pagination {
  margin-top: 10px;
}
.site-pagination .pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 10px;
}
.site-pagination .nav-links {
  height: 60px;
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
.site-pagination .page-numbers {
  color: #aaa;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  padding: 0 16px;
  margin: 10px 0;
  border-radius: 5px;
}
.site-pagination .page-numbers.current {
  color: #333;
  font-weight: bold;
  cursor: pointer;
}
.site-pagination .page-numbers:hover {
  background-color: #f1f1f1;
}

.site-footer {
  padding: 0 30px;
}
.site-footer .inside-footer {
  color: #777;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 0 150px;
}

.main-list .post {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-decoration: none;
  padding: 25px 30px;
  background-color: #fff;
  border-radius: 10px;
  gap: 25px;
}
.main-list .post:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.12s ease-in-out;
}
.main-list .post:hover .post-title {
  color: #fc8b5c;
}
.main-list .post-summary {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.main-list .post-summary .post-title {
  color: #222;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
.main-list .post-excerpt {
  padding: 10px 0 0;
}
.main-list .post-excerpt p {
  color: #999;
  font-size: 15px;
  line-height: 1.7;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
}
.main-list .post-thumbnail {
  width: 95px;
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-items: flex-start;
  align-self: stretch;
  justify-content: center;
}
.main-list .post-thumbnail img {
  height: auto;
  max-width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.main-list-empty {
  padding: 25px;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 10px;
}
.main-list-empty p {
  color: #999;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.main-single {
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
}
.main-single header {
  padding-bottom: 25px;
  border-bottom: 2px solid #efefef;
}
.main-single .post-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.35;
  margin: 0;
}
.main-single .post-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 4px;
  gap: 12px;
}
.main-single .post-author,
.main-single .post-date {
  color: #bababa;
  font-size: 13px;
  margin: 0;
}
.main-single .post-content {
  padding: 40px 0 0;
}
.main-single .post-content h2 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.35;
  padding: 60px 0 0;
  margin: 60px 0 25px;
  border-top: 1px solid #efefef;
}
.main-single .post-content h3 {
  font-size: 19px;
  font-weight: bold;
  margin: 36px 0 12px;
}
.main-single .post-content p {
  margin: 0 0 25px;
}
.main-single .post-content a {
  color: #fc8b5c;
  text-decoration: none;
}
.main-single .post-content a:hover {
  text-decoration: underline;
}
.main-single .post-content ul,
.main-single .post-content ol {
  padding: 0;
  margin: 0 0 25px 25px;
}
.main-single .post-content ul strong,
.main-single .post-content ul b,
.main-single .post-content ol strong,
.main-single .post-content ol b {
  background-color: #fc8b5c33;
  /* box-shadow: inset 0 -8px 0 rgb(252 139 92 / 30%); */
}

.main-single .post-content .wp-block-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.main-single .post-content .wp-block-button {
  width: 100%;
  max-width: 100%;
  display: flex;
}
.main-single .post-content .wp-block-button a {
  width: 100%;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  padding: 8px 24px;
  background: #fc8b5c;
  border-radius: 100px;
}
.main-single .post-content .wp-block-button a:hover {
  background: #fb743d;
}

.main-single .post-content .wp-block-post-featured-image,
.main-single .post-content .wp-block-image {
  max-width: 100%;
  text-align: left;
  margin: 30px 0;
}
.main-single .post-content .wp-block-post-featured-image img,
.main-single .post-content .wp-block-image img {
  object-fit: cover;
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}
.main-single .post-content .wp-block-post-featured-image figcaption,
.main-single .post-content .wp-block-image figcaption {
  color: #aaa;
  font-size: 13px;
  text-align: center;
  margin: 0;
  padding: 8px 0 4px;
}

.main-single .post-content div#ez-toc-container {
  width: calc(100% - 22px) !important;
  margin-top: 40px !important;
  padding: 15px 10px 20px 10px !important;
  border-radius: 10px !important;
}
.main-single .post-content .ez-toc-title-container {
  width: calc(100% - 18px) !important;
  padding: 0 10px 6px 8px !important;
}
.main-single .post-content ul.ez-toc-list {
  margin: 0 0 0 10px !important;
}
.main-single .post-content ul.ez-toc-list ul {
  margin: 0 0 8px 20px !important;
}
div#ez-toc-container ul.ez-toc-list a:hover {
  color: #fc8b5c !important;
}

.main-single .post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 40px;
}
.main-single .post-content table thead {
  border-bottom: 3px solid #ececec;
}
.main-single .post-content table th {
  font-size: 15.5px;
  font-weight: bold;
  padding: 2px 12px;
  background: #f1f1f1;
  border: 1px solid #ececec;
}
.main-single .post-content table td {
  font-size: 15.5px;
  padding: 4px 12px;
  border: 1px solid #ececec;
}

.main-single .post-content blockquote {
  margin: 0 0 25px;
  padding: 10px 12px;
  background: #f1f1f1;
  border-radius: 5px;
}
.main-single .post-content blockquote p {
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}

.main-single .post-ads {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 30px 0 10px;
  gap: 20px;
}
.main-single .post-ads.bottom {
  margin: 50px 0 0;
}
.main-single .post-ads-inner {
  width: 100%;
  flex: 1;
}

.main-single .related-posts h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  padding: 50px 0 0;
  margin: 60px 0 15px;
  border-top: 1px solid #efefef;
}
.main-single .related-posts ul {
  margin: 0 0 0 18px !important;
}

.post-navigation {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-self: stretch;
  margin-top: 10px;
  gap: 10px;
}
.post-navigation a {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-self: stretch;
  text-decoration: none;
  padding: 25px 40px;
  background: #fff;
  border-radius: 10px;
}
.post-navigation a:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.12s ease-in-out;
}
.post-navigation a:hover .post-navi-title {
  text-decoration: underline;
}
.post-navigation .post-next {
  align-items: flex-end;
}
.post-navigation .post-next .post-navi-title {
  text-align: right;
}
.post-navigation .post-navi-label {
  color: #333;
  font-size: 17px;
  font-weight: bold;
  padding-bottom: 6px;
}
.post-navigation .post-navi-title {
  color: #fc8b5c;
  font-size: 17px;
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.post-comments {
  padding: 40px;
  margin-top: 10px;
  background-color: #fff;
  border-radius: 10px;
}
.post-comments h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin: 0;
}
.post-comments h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.35;
  margin: 0;
}
.post-comments p {
  color: #999;
  font-size: 15px;
  margin: 0;
}
.post-comments .comment-empty {
  padding-top: 8px;
}

.post-comments .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-comments .comment-list ol {
  margin: 0;
  padding: 0 0 0 25px;
  list-style: none;
}
.post-comments .comment-author {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.post-comments .comment-author img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.post-comments .comment-author a {
  color: #222;
  font-weight: bold;
  font-size: 15px;
  font-style: normal;
  text-decoration: none;
  padding: 0 0 0 10px;
}
.post-comments .comment-author .says {
  display: none;
}
.post-comments .comment-meta {
  height: 26px;
  display: flex;
  padding-left: 34px;
  flex-direction: row;
  align-items: center;
  position: relative;
  top: -4px;
}
.post-comments .comment-meta a {
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
}
.post-comments .comment-body {
  position: relative;
  padding: 14px 0 16px;
  border-bottom: 1px solid #f1f1f1;
}
.post-comments .comment-body p {
  color: #222;
  font-size: 15px;
  padding: 0 0 0 34px;
}
.post-comments .comment-body .reply {
  top: 15px;
  right: 0;
  position: absolute;
}
.post-comments .comment-body .reply a {
  color: #bcbcbc;
  font-size: 14px;
  text-decoration: none;
  padding: 5px;
}

.post-comments .comment-respond {
  padding-top: 35px;
}
.post-comments .comment-form p {
  padding-top: 8px;
}
.post-comments .comment-form p a {
  color: #999;
  text-decoration: none;
}
.post-comments .comment-form label {
  width: 70px;
  flex-shrink: 0;
}
.post-comments .comment-form input {
  color: #222;
  font-size: 15px;
  padding: 10px 15px;
  background: #f9f9f9;
  border: navajowhite;
  border-radius: 8px;
  outline: none;
}
.post-comments .comment-form textarea {
  width: calc(100% - 30px);
  height: 75px;
  color: #222;
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 15px;
  background: #f9f9f9;
  border-radius: 10px;
  border: none;
  outline: none;
  resize: none;
}
.post-comments .form-submit input[type="submit"] {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 8px 24px;
  background: #fc8b5c;
  border-radius: 100px;
  border: none;
  outline: none;
  cursor: pointer;
}

.post-comments .comment-form-comment,
.post-comments .comment-form-author,
.post-comments .comment-form-email {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.post-comments .comment-form-author input,
.post-comments .comment-form-email input {
  width: 50%;
}
.post-comments .comment-form-comment label,
.post-comments .comment-form-url {
  display: none;
}
.comment-form-cookies-consent {
  padding: 12px 0 20px;
}

body > .google-auto-placed {
  padding-bottom: 130px;
}

@media (max-width: 974px) {
  .site-grid .inside-grid {
    flex-direction: column;
  }
  .site-main {
    width: 100%;
  }
  .site-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 10px;
  }
  .site-header .main-navigation .menu-primary-container {
    display: none;
  }
  .site-header .mobile-navigation {
    width: 100%;
    display: none;
    padding: 8px 0;
    margin-top: 10px;
    background-color: #fff;
    border-radius: 10px;
  }
  .site-header .mobile-navigation.active {
    display: flex;
  }
  .site-header .mobile-navigation .menu-primary-container,
  .site-header .mobile-navigation ul {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .site-header .mobile-navigation ul li a {
    padding: 8px 30px;
    width: calc(100% - 60px);
  }
  .site-header .menu-toggle {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
  }
  .site-header .menu-toggle .menu-icon {
    display: flex;
    flex-direction: column;
  }
  .site-header .menu-toggle .bar {
    height: 2px;
    width: 16px;
    background-color: #555;
    border-radius: 10px;
    margin: 1.8px 0;
  }
  .site-grid {
    padding: 10px;
  }
  .site-sidebar .sidebar-section {
    width: calc(100% - 60px);
    padding: 25px 30px;
  }
  .site-footer {
    padding: 0 10px;
  }

  .main-single {
    padding: 30px;
  }
  .post-navigation a {
    padding: 25px 30px;
  }
  .post-comments {
    padding: 30px;
  }
}

@media (max-width: 425px) {
  .site-header {
    padding: 0;
  }
  .site-header .inside-header {
    height: 55px;
    margin-top: 10px;
    border-radius: 0;
  }
  .site-header .logo {
    padding-left: 15px;
  }
  .site-header .main-navigation {
    padding-right: 5px;
  }
  .site-header .mobile-navigation {
    border-radius: 0;
  }
  .site-header .mobile-navigation ul li a {
    padding: 8px 18px;
    width: calc(100% - 36px);
  }
  .site-grid {
    padding: 10px 0;
  }
  .site-category {
    padding: 12px 18px;
    border-radius: 0;
  }
  .site-category h1 {
    font-size: 19px;
  }
  .site-category .taxonomy-description p {
    display: none;
  }
  .site-sidebar .sidebar-section {
    width: calc(100% - 40px);
    padding: 20px;
    border-radius: 0;
  }
  .site-pagination .pagination {
    padding: 0 10px;
    border-radius: 0;
  }
  .site-footer .inside-footer {
    padding: 10px 0 100px;
  }

  .main-list .post {
    width: calc(100% - 40px);
    padding: 20px;
    border-radius: 0;
    gap: 18px;
  }
  .main-list .post-summary .post-title {
    font-size: 18px;
  }
  .main-list .post-excerpt {
    padding: 8px 0 0;
  }
  .main-list .post-thumbnail {
    width: 85px;
  }

  .main-single,
  .post-navigation a,
  .post-comments {
    padding: 20px;
    border-radius: 0;
  }
}
