/*
Theme Name: Hello Elementor Child
Theme URI: https://moremuzik360.com
Description: Child theme for Hello Elementor
Author: Selim Reza
Template: hello-elementor
Version: 1.0.0
*/

.child-single-wrap {
  background-color: #071934;
  color: #fff;
}
.child-single-post {
  max-width: 1140px;
  padding: 40px 20px;
  margin: 0 auto;
  color: #fff;
  font-family: "Rubik", sans-serif;
}

.child-post-thumbnail img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.child-post-meta {
  font-weight: 500;
  color: #a4a7ab;
}
.child-post-content p {
  text-align: justify;
  line-height: 1.6rem;
}

/* index file style */
.sr-blog-wrapper {
  background: #071934;
  padding: 60px 20px;
}

.sr-blog-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.sr-card {
  background: #e9e9e9;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
}

.sr-card:hover {
  transform: translateY(-5px);
}

.sr-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.sr-content {
  padding: 20px;
}

.sr-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.sr-title a {
  text-decoration: none;
  color: #071934;
}

.sr-date {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.sr-excerpt {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.sr-readmore {
  font-size: 13px;
  color: #994319;
  text-decoration: none;
  font-weight: 600;
}

.sr-readmore:hover {
  text-decoration: underline;
}

.sr-pagination {
  text-align: center;
  margin-top: 40px;
}

.sr-pagination .nav-links {
  display: inline-flex;
  gap: 8px;
}

.sr-pagination a,
.sr-pagination span {
  display: inline-block;
  padding: 8px 12px;
  background: #e9e9e9;
  color: #071934;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.sr-pagination a:hover {
  background: #1e7cae;
  color: #fff;
}

.sr-pagination .current {
  background: #994319;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .sr-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sr-blog-grid {
    grid-template-columns: 1fr;
  }
}
