/* ============================================
   BLOG STYLES - All Blog Related Styles
   ============================================ */

/* Blog Page Container */
.blog-page-container {
  padding: 20px 70px;
  max-width: 1480px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .blog-page-container {
    padding: 5px 10px;
  }
}

.blog-homepage-container {
  padding: 20px 70px;
  max-width: 1480px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .blog-homepage-container {
    padding: 5px 10px;
  }
}

/* Blog Title */
.blog-title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #27272b;
  margin: 30px 0 40px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .blog-title {
    font-size: 24px;
    text-align: center;
    background: #27272b;
    color: #fff;
    padding: 10px;
    font-weight: bold;
  }
}

.featured-blog-section h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .featured-blog-section h2 {
    font-size: 24px;
    text-align: center;
    background: #27272b;
    color: #fff;
    padding: 10px;
    font-weight: bold;
  }
}

/* Blog Content Wrapper */
.blog-content-wrapper {
  display: flex;
  gap: 30px;
}

@media (max-width: 991px) {
  .blog-content-wrapper {
    flex-direction: column;
  }
}

/* Sidebar Styles */
.blog-sidebar {
  width: 280px;
  flex-shrink: 0;
  background-color: #333333;
  color: #fff;
  padding: 30px 25px;
  border-radius: 4px 0 0 4px;
}

@media (max-width: 991px) {
  .blog-sidebar {
    width: 100%;
    border-radius: 4px;
  }
}

.sidebar-section {
  margin-bottom: 40px;
}

.sidebar-section:last-child {
  margin-bottom: 0;
}

/* Widget Styles for Sidebar */
.blog-sidebar .widget {
  margin-bottom: 40px;
}

.blog-sidebar .widget:last-child {
  margin-bottom: 0;
}

.blog-sidebar .widget-title,
.blog-sidebar .widget h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}

/* Ensure sidebar section titles (custom markup) inherit correct color */
.blog-sidebar .sidebar-title,
.blog-sidebar h2,
.blog-sidebar h3,
.blog-sidebar h4,
.blog-sidebar h5 {
  color: #ffffff;
  font-weight: bold;
}

.blog-sidebar .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-sidebar .widget ul li {
  margin-bottom: 12px;
  padding: 0;
}

.blog-sidebar .widget ul li:last-child {
  margin-bottom: 0;
}

.blog-sidebar .widget ul li a {
  color: #bbbbbb;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.blog-sidebar .widget ul li a:hover {
  color: #ffffff;
}

.blog-sidebar .widget ul li a .sidebar-arrow {
  color: #666666;
  margin-right: 8px;
  font-size: 10px;
  display: inline-block;
  transition: color 0.3s ease;
}

.blog-sidebar .widget ul li a:hover .sidebar-arrow {
  color: #bbbbbb;
}

/* Widget Content */
.blog-sidebar .widget p {
  color: #bbbbbb;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-sidebar .widget p:last-child {
  margin-bottom: 0;
}

.blog-sidebar .widget a {
  color: #bbbbbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-sidebar .widget a:hover {
  color: #ffffff;
}

/* Search Widget */
.blog-sidebar .widget_search .search-form {
  display: flex;
  gap: 0;
}

.blog-sidebar .widget_search input[type="search"] {
  flex: 1;
  padding: 10px;
  background: #444444;
  border: 1px solid #555555;
  color: #ffffff;
  font-size: 14px;
}

.blog-sidebar .widget_search input[type="search"]:focus {
  outline: none;
  border-color: #666666;
  background: #4a4a4a;
}

.blog-sidebar .widget_search button {
  padding: 10px 15px;
  background: #555555;
  border: 1px solid #555555;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-sidebar .widget_search button:hover {
  background: #666666;
  border-color: #666666;
}

/* Recent Posts Widget */
.blog-sidebar .widget_recent_entries ul li {
  padding-left: 0;
}

.blog-sidebar .widget_recent_entries ul li a {
  display: flex;
  align-items: center;
}

.blog-sidebar .widget_recent_entries ul li a::before {
  content: "►";
  color: #666666;
  margin-right: 8px;
  font-size: 10px;
  transition: color 0.3s ease;
}

.blog-sidebar .widget_recent_entries ul li a:hover::before {
  color: #bbbbbb;
}

.blog-sidebar .widget_recent_entries .post-date {
  display: block;
  font-size: 12px;
  color: #888888;
  margin-top: 5px;
  margin-left: 18px;
}

/* Categories Widget */
.blog-sidebar .widget_categories ul li {
  display: flex;
  align-items: center;
}

.blog-sidebar .widget_categories ul li a {
  display: flex;
  align-items: center;
}

.blog-sidebar .widget_categories ul li a::before {
  content: "►";
  color: #666666;
  margin-right: 8px;
  font-size: 10px;
  transition: color 0.3s ease;
}

.blog-sidebar .widget_categories ul li a:hover::before {
  color: #bbbbbb;
}

/* Archives Widget */
.blog-sidebar .widget_archive ul li a {
  display: flex;
  align-items: center;
}

.blog-sidebar .widget_archive ul li a::before {
  content: "►";
  color: #666666;
  margin-right: 8px;
  font-size: 10px;
  transition: color 0.3s ease;
}

.blog-sidebar .widget_archive ul li a:hover::before {
  color: #bbbbbb;
}

/* Pages Widget */
.blog-sidebar .widget_pages ul li a {
  display: flex;
  align-items: center;
}

.blog-sidebar .widget_pages ul li a::before {
  content: "►";
  color: #666666;
  margin-right: 8px;
  font-size: 10px;
  transition: color 0.3s ease;
}

.blog-sidebar .widget_pages ul li a:hover::before {
  color: #bbbbbb;
}

/* Tag Cloud Widget */
.blog-sidebar .widget_tag_cloud .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-sidebar .widget_tag_cloud .tagcloud a {
  display: inline-block;
  padding: 5px 10px;
  background: #444444;
  border-radius: 3px;
  font-size: 12px !important;
  transition: all 0.3s ease;
  color: #bbbbbb;
}

.blog-sidebar .widget_tag_cloud .tagcloud a:hover {
  background: #555555;
  color: #ffffff;
}

/* Meta Widget */
.blog-sidebar .widget_meta ul li a {
  display: flex;
  align-items: center;
}

.blog-sidebar .widget_meta ul li a::before {
  content: "►";
  color: #666666;
  margin-right: 8px;
  font-size: 10px;
  transition: color 0.3s ease;
}

.blog-sidebar .widget_meta ul li a:hover::before {
  color: #bbbbbb;
}

/* Calendar Widget */
.blog-sidebar .widget_calendar table {
  width: 100%;
  color: #bbbbbb;
}

.blog-sidebar .widget_calendar caption {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-sidebar .widget_calendar th,
.blog-sidebar .widget_calendar td {
  padding: 8px;
  text-align: center;
}

.blog-sidebar .widget_calendar th {
  color: #ffffff;
  font-weight: bold;
}

.blog-sidebar .widget_calendar a {
  color: #ff5874;
}

.blog-sidebar .widget_calendar a:hover {
  color: #ffffff;
}

/* Text Widget */
.blog-sidebar .widget_text {
  color: #bbbbbb;
}

.blog-sidebar .widget_text a {
  color: #bbbbbb;
}

.blog-sidebar .widget_text a:hover {
  color: #ffffff;
}

.sidebar-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-list li {
  margin-bottom: 12px;
  padding: 0;
}

.sidebar-list li:last-child {
  margin-bottom: 0;
}

.sidebar-list a {
  color: #bbbbbb;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.sidebar-list a:hover {
  color: #ffffff;
}

.sidebar-arrow {
  color: #666666;
  margin-right: 8px;
  font-size: 10px;
  display: inline-block;
  transition: color 0.3s ease;
}

.sidebar-list a:hover .sidebar-arrow {
  color: #bbbbbb;
}

/* Blog Posts */
.blog-posts {
  flex: 1;
}

.blog-post {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7ed;
  background: #fff;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.blog-post:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-post:last-child {
  border-bottom: none;
}

.blog-post .single-post-title {
  font-size: 28px;
  font-weight: bold;
  color: #27272b;
  margin-bottom: 10px;
  line-height: 1.3;
  word-break: break-all;
}

.blog-post h2 a {
  color: #27272b;
  text-decoration: none;
}

.blog-post h2 a:hover {
  color: #ff5874;
}

.blog-post .post-date {
  font-size: 12px;
  color: #838793;
  margin-bottom: 15px;
}

.blog-post .post-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
  font-size: 13px;
  color: #838793;
}

.blog-post .post-meta .post-date,
.blog-post .post-meta .post-author,
.blog-post .post-meta .post-category {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-post .post-meta a {
  color: #ff5874;
  text-decoration: none;
}

.blog-post .post-meta a:hover {
  color: #27272b;
}

.blog-post .post-featured-image {
  width: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #93959f;
  font-size: 48px;
}

.blog-post .post-content {
  font-size: 15px;
  color: #27272b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-post .post-content p {
  margin-bottom: 15px;
}

.blog-post .post-content h3 {
  font-size: 22px;
  font-weight: bold;
  color: #27272b;
  margin: 25px 0 15px;
}

.blog-post .post-content ul,
.blog-post .post-content ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.blog-post .post-content li {
  margin-bottom: 8px;
}

.blog-post .post-content strong {
  color: #27272b;
  font-weight: 600;
}

.blog-post .read-more {
  color: #ff5874;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
}

.blog-post .read-more:hover {
  color: #27272b;
}

.blog-post .post-tags {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7ed;
  font-size: 13px;
  color: #838793;
}

.blog-post .post-tags span {
  margin-right: 10px;
}

.blog-post .post-tags a {
  color: #838793;
  text-decoration: none;
  margin-right: 8px;
  font-size: 12px;
  padding: 3px 8px;
  background: #f5f5f5;
  border-radius: 3px;
  transition: all 0.3s;
}

.blog-post .post-tags a:hover {
  color: #ff5874;

}

/* Blog Grid (Homepage) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-card {
  background: #fff;
  border: solid 1px #e5e7ed;
  transition: all 0.4s;
  overflow: hidden;
}

.blog-card:hover {
  box-shadow: 0 0 20px #ddd;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93959f;
  font-size: 48px;
}

.blog-card-content {
  padding: 20px;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #27272b;
  margin-bottom: 10px;
}

.blog-card h3 a {
  color: #27272b;
  text-decoration: none;
  word-break: break-word;
}


.blog-card h3 a:hover {
  color: #ff5874;
}

.blog-card-meta {
  font-size: 12px;
  color: #838793;
  margin-bottom: 15px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #27272b;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-readmore {
  color: #ff5874;
  text-decoration: underline;
  font-size: 13px;
}

.blog-card-readmore:hover {
  color: #27272b;
}

/* Hero Blog Section */
.hero-blog-section {
  margin: 40px 0;
}

.hero-blog-card {
  background: #fff;
  border: solid 1px #e5e7ed;
  display: flex;
  overflow: hidden;
}

@media (max-width: 991px) {
  .hero-blog-card {
    flex-direction: column;
  }
}

.hero-blog-image {
  width: 50%;
  min-height: 400px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93959f;
  font-size: 72px;
}

@media (max-width: 991px) {
  .hero-blog-image {
    width: 100%;
    min-height: 250px;
  }
}

.hero-blog-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) {
  .hero-blog-content {
    width: 100%;
    padding: 20px;
  }
}

.hero-blog-content h2 {
  font-size: 32px;
  font-weight: bold;
  color: #27272b;
  margin-bottom: 15px;
}

.hero-blog-content h2 a {
  color: #27272b;
  text-decoration: none;
}

.hero-blog-content h2 a:hover {
  color: #ff5874;
}

.hero-blog-meta {
  font-size: 13px;
  color: #838793;
  margin-bottom: 20px;
}

.hero-blog-excerpt {
  font-size: 16px;
  color: #27272b;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb-section {
  background: #f5f5f5;
  padding: 15px 0;
  margin-bottom: 30px;
}

.breadcrumb-section .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb-section .breadcrumb-item a {
  color: #838793;
}

.breadcrumb-section .breadcrumb-item.active {
  color: #27272b;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
  clear: both; /* Clear floats to ensure pagination appears below all content */
  width: 100%;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  color: #27272b;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  font-weight: 500;
  border: 1px solid #e5e7ed;
}

.blog-pagination a:hover {
  background: #e5e7ed;
  color: #27272b;
}

.blog-pagination .current,
.blog-pagination span.current {
  background: #ff698d;
  color: #fff;
  border-color: #ff698d;
}

.blog-pagination .prev,
.blog-pagination .next {
  width: auto;
  padding: 0 12px;
}

/* Page Links (wp_link_pages) */
.page-links {
  clear: both;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #e5e7ed;
  border-bottom: 1px solid #e5e7ed;
}

.page-links a,
.page-links > span {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  background: #f5f5f5;
  color: #27272b;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #e5e7ed;
  transition: all 0.3s;
}

.page-links a:hover {
  background: #e5e7ed;
  color: #27272b;
}

.page-links > span {
  background: #ff698d;
  color: #fff;
  border-color: #ff698d;
}

/* Post Navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 2px solid #e5e7ed;
  border-bottom: 2px solid #e5e7ed;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
}

.post-navigation .nav-previous {
  padding-right: 20px;
  border-right: 1px solid #e5e7ed;
}

.post-navigation .nav-next {
  padding-left: 20px;
  text-align: right;
}

/* Hide navigation if no previous/next post */
.post-navigation .nav-previous:empty {
  display: none;
}

.post-navigation .nav-next:empty {
  display: none;
}

/* If only one navigation item exists, adjust styling */
.post-navigation:has(.nav-previous:not(:empty)):has(.nav-next:empty) .nav-previous {
  border-right: none;
  padding-right: 0;
}

.post-navigation:has(.nav-previous:empty):has(.nav-next:not(:empty)) .nav-next {
  padding-left: 0;
}

/* Hide navigation if no previous/next post */
.post-navigation .nav-previous:empty,
.post-navigation .nav-next:empty {
  display: none;
}

.post-navigation .nav-previous:has(span.nav-disabled),
.post-navigation .nav-next:has(span.nav-disabled) {
  display: none;
}

.post-navigation a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #27272b;
  transition: all 0.3s;
}

.post-navigation .nav-next a {
  flex-direction: row;
  justify-content: flex-end;
}

.post-navigation .nav-content {
  flex: 1;
}

.post-navigation a:hover {
  color: #ff5874;
}

.post-navigation .nav-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #8e95a0;
  margin-bottom: 5px;
  font-weight: 500;
}

.post-navigation .nav-title {
  font-size: 16px;
  font-weight: 500;
  color: #27272b;
  line-height: 1.4;
}

.post-navigation .nav-previous i,
.post-navigation .nav-next i {
  font-size: 24px;
  color: #ff5874;
  font-weight: bold;
  flex-shrink: 0;
}

.post-navigation .nav-previous i {
  margin-right: 15px;
  order: -1;
}

.post-navigation .nav-next i {
  margin-left: 15px;
  order: 1;
}


@media (max-width: 767px) {
  .post-navigation {
    flex-direction: column;
  }
  
  .post-navigation .nav-previous {
    padding-right: 0;
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #e5e7ed;
  }
  
  .post-navigation .nav-next {
    padding-left: 0;
    padding-top: 20px;
    text-align: left;
  }
  
  .post-navigation .nav-next a {
    flex-direction: row;
  }
}

/* Comments Section */
.comments-section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e5e7ed;
}

.comments-section h3 {
  font-size: 24px;
  font-weight: bold;
  color: #27272b;
  margin-bottom: 30px;
}

.comment {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e7ed;
}

.comment:last-child {
  border-bottom: none;
}

.comment-author {
  font-weight: bold;
  color: #27272b;
  margin-bottom: 5px;
}

.comment-date {
  font-size: 12px;
  color: #838793;
  margin-bottom: 10px;
}

.comment-content {
  color: #27272b;
  line-height: 1.6;
  display: table-cell;
}

/* Comment Form */
.comment-form {
  margin-top: 40px;
}

.comment-form h3 {
  font-size: 24px;
  font-weight: bold;
  color: #27272b;
  margin-bottom: 20px;
}

.comment-form .form-group {
  margin-bottom: 20px;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
  color: #27272b;
  font-weight: 500;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dee2e6;
  border-radius: 3px;
  font-size: 14px;
  cursor: pointer;
}


.comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit  {
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit input{
  background: transparent;
}



/* Search Page */
.search-results-info {
  font-size: 14px;
  color: #838793;
  margin-bottom: 20px;
}

/* Category Page */
.category-header {
  margin-bottom: 30px;
}

/* Archive Page */
.archive-header {
  margin-bottom: 30px;
}

/* 404 Page */
.error-404 {
  text-align: center;
  padding: 100px 20px;
}

.error-404 h1 {
  font-size: 72px;
  color: #ff5874;
  margin-bottom: 20px;
}

.error-404 h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.error-404 p {
  font-size: 18px;
  margin-bottom: 30px;
}

.error-404 .back-home {
  font-size: 16px;
  padding: 12px 30px;
  background: #ff5874;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  display: inline-block;
}

.error-404 .back-home:hover {
  background: #27272b;
}
.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-2 .gallery-item
 {
    max-width: 50%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}
.gallery-columns-5 .gallery-item {
    max-width: 20%;
}
.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}
.gallery-columns-10 .gallery-item {
    max-width: 10%;
}
.gallery-item img{
  max-width: 100%;
  height: auto;
}



.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    padding: 5px;
    margin: 0px;
}


.comments-title .comments-title {
    margin-top: 0;
    margin-bottom: 40px;
}

 ol.comment-list {
    list-style: none;
}

.comment-author img

 {
    border-radius: 50%;
    margin-right: 10px;
   
}


.comment-author.vcard img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    float: left;
    border-radius: 50%;
    object-fit: cover;
}

.comments-section .comment-list .comment .comment-meta {
    color: #acb7c1;
    font-size: 12.6px;
}
blockquote {
	margin: 0 1.5em;
    padding: 15px;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
  	border-collapse: collapse;
}

table, td, th {  
  border: 1px solid #ddd;
  text-align: left;
}

th, td {
  padding: 15px;
}

dt {
	font-weight: bold;
}

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

ul, ol {
	margin: 0 0 1.5em 0;
    padding-left: 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

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

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}



ol.comment-list article {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: solid 1px #f7f7f7;
}

.comments-section .comment-list ol.children {
    list-style: none;
}

.form-submit:hover {
    background-color: #ff5874;
  
   
}

.blog-post .post-featured-image img{
  width: 100%;
  height: auto;
}

