/* line 1, ../../../../xampp/htdocs/phcreativeblog/wp-content/themes/ph-groovy-blog-child/design-files/main/main.scss */
.blog-style1 {
   display: block;
  padding: 0px 10px;
  border: none;
}
.blog-style1 .entry-title
 {
  margin-top: 10px;
}
.blog-style1 .entry-title a
 {
   font-size: 21px; 
}

.blog-style1 .thumbnail-wrapper{
  position: relative;
  margin-bottom: 10px;
}

.blog-style1 .category-ribbon{
  position: relative;
  left: 0;
  margin-bottom: 10px;
}

.feature-area-one-wrapper,.feature-area-two-wrapper{
  background: #fff;
}

.feature-area-two-wrapper .featured-module-style2 .small{
  align-items: center;
}

#secondary {
  border: none;
}
#secondary .widget{
  background: #fff;
  box-shadow: none;
  padding: 7px;
  margin-bottom: 0px;
}

.blog-style1 .post-details{
background: white;
position: relative;
bottom: 15%;
max-width: 85%;
margin: auto;
padding: 15px;
/*# sourceMappingURL=main.css.map */
}

a:visited{
  color: #3b3b3b;
}

div:focus{
  border:solid 1px #ff0f4b;
}

.swiper-container .swiper-slide .slide-overlay{
  border-radius: 11px;
}

.swiper-slide{
  border-radius: 11px;
}

.blog-style1 .thumbnail-wrapper {
  position: relative;
  width: 100%; /* adjust as necessary */
  height: 270px; /* set your desired height */
  overflow: hidden;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 11px;
  box-shadow:rgba(143, 143, 143, .5) 0px 8px 24px;
}

.blog-style1 .thumbnail-link {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust the min width as needed */
    gap: 20px; /* Adjust the gap between the grid items as needed */
}

.thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 200px; /* Set your desired height */
    overflow: hidden;
}

.thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.blog-style5 {
  padding: 0px;
  border-top-left-radius: 20px 19px;
  border-top-right-radius: 20px 19px;
  border-bottom-left-radius: 20px 19px;
  border-bottom-right-radius: 20px 19px;
  margin-bottom: 1.3rem;
  border-left: solid 5px #fff;
}

.blog-style5 .post-details {
  padding: 20px;
}


.blog-style5:nth-child(odd) {
  background-color: #f7edf0;
}

.blog-style5:nth-child(even) {
  background-color: #fffbf3;
}

.blog-style5 .thumbnail {
  position: relative;
  min-height: 265px;
  object-fit: cover;
  border-top-left-radius: 20px 19px;
  border-top-right-radius: 20px 19px;
}

.blog-style5 .category-ribbon {
  position: absolute;
  left: 36px;
  background: var(--phcreativeblog-primary);
  color: var(--phcreativeblog-primary-text);
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 2px;
  font-size: 11px;
  line-height: 11px;
  z-index: 99;
  opacity: 0.8;
  text-decoration: none;
}

.blog-style5 .entry-title {
  font-size: 24px;
}

.blog-style5 .entry-title a {
  color: var(--phcreativeblog-text-dark);
  text-decoration: none;
  font-size: 27px;
  font-size: 16px;
  font-weight: 600;
  line-clamp: 2;
}

.blog-style5 .entry-title a:hover {
  color: var(--phcreativeblog-dark);
}

.blog-style5 .entry-meta {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 300;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--phcreativeblog-darker);
}

.blog-style5 .entry-meta a {
  color: var(--phcreativeblog-secondary);
  text-decoration: none;
}

.blog-style5 .entry-meta a:hover {
  color: var(--phcreativeblog-dark);
}

.blog-style5 .entry-excerpt {
  font-weight: 400;
  color: var(--phcreativeblog-text-content);
  line-height: 1.6em;
}

@media screen and (max-width: 767px) {
  .blog-style5 {
      padding: 0;
      display: block;
  }

  .blog-style5 .thumbnail {
      margin-bottom: 15px;
  }

  .blog-style5 .thumbnail img {
      width: 100%;
  }
}



.blog-style1 .thumbnail-wrapper {
  position: relative;
  background: #fff;
 
  overflow: hidden; 
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.blog-style1 .thumbnail-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--phcreativeblog-primary), 0 0 30px var(--phcreativeblog-primary-text), 0 0 45px 
}

.blog-style1 .thumbnail-wrapper:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.7), 0 0 30px rgba(255, 165, 0, 0.5), 0 0 45px rgba(255, 165, 0, 0.3);
  z-index: -1;
  animation: glow-animation 1.5s infinite;
}

.blog-style1 .thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1; /* Ensure image stays above the glow */
}

@keyframes glow-animation {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.7), 0 0 30px rgba(255, 165, 0, 0.5), 0 0 45px rgba(255, 165, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.9), 0 0 50px rgba(255, 165, 0, 0.7), 0 0 60px rgba(255, 165, 0, 0.5);
  }
}

.single-style3 .thumbnail-wrapper{
  height: auto;
  border-radius: 4px;
}