/* static/css/blog/index.css */

/* Authors */
.authors {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 2px;
}

.publish-date {
    font-size: 12px;
    color: #636363;
}

.blog-item.blog-main {
    padding: 20px;
    color: #ffffff;
    background-color: #303030;
    margin-top: 20px !important;
}

.blog-main .author-name{
    color: white;
}

.blog-main .publish-date{
    color: #ffffffc9;
}

.blog-main .blog-title {
    padding-right: 40px;
}

.blog-main .banner-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.blog-main .banner-sm-text {
    font-size: 14px;
}

.blog-main .arrow-icon {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    /* Smooth transition */
}

.blog-main .arrow-icon:hover {
    transform: rotate(45deg);
    /* Rotate the icon */
}


.category-chip {
    padding: 4px 10px;
    background-color: #157FBC;
    color: #ffffff;
    font-size: 14px;
    border-radius: 20px;
  }
  
  .blog-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .blog-item {
    display: flex;
    align-items: flex-end;
    margin-top: 20px;
    border-radius: 8px;
  }
  
  .blog-item .banner-content {
    gap: 10px;
  }
  
  .blog-item .bottom {
    display: flex;
    align-items: flex-end;
  }
  
  .blog-item .blog-image {
    min-height: 250px;
  }
  
  .blog-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-wrap: pretty;
  }
  
  .blog-content .banner-title {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    display: inline;
    padding-bottom: 2px;
    transition: all 0.35s linear;
    background: linear-gradient(to bottom, #3DA8E5 0%, #3DA8E5 98%);
    background-size: 0px 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
  }
  
  .blog-content .banner-title:hover {
    background-size: 100% 2px;
  }
  
  .blog-content .meta-desc {
    color: #F4F5F7;
    font-size: 14px;
    opacity: 0.6;
    padding-right: 40px;
  }
  
  .blog-content .banner-icon-link {
    display: flex;
    justify-content: flex-end;
  }
  
  .blog-image {
    width: 100%;
    height: auto;
    max-height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .arrow-filter {
    filter: brightness(0) saturate(100%) grayscale(1) contrast(1) sepia(1) hue-rotate(0deg) brightness(22%);
  }
  
  /* Authors */
  .authors {
    margin-top: 10px;
  }
  
  .author-profile {
    width: 40px;
    height: 40px;
    border-radius: 30px !important;
    margin-right: 6px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .author-name {
    color: #ffffff;
  }
  
  .author-name:hover,
  .author-name:focus {
    color: #EECE95;
  }
  
 
/* Banner */
.banner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    z-index: 2;
    background-color: #f4f5f7;
  }
  
  .banner-content.text-dark,
  .banner-content.text-dark .banner-title {
    color: #303030;
  }
  
  .banner-content .author-profile {
    min-width: 40px;
  }
  
  .banner-content .banner-sm-text {
    font-size: 14px;
  }
  
  .banner-content .blog-image-thumbnail {
    width: 100%;
    height: auto;
    max-height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
    min-height: 200px;
  }
  
  .banner-content .banner-description {
    color: #636363;
  }
  
  .banner-content .banner-footer {
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
  }
  
  .banner-content .banner-footer .arrow {
    display: flex;
    justify-content: flex-end;
  }
  
  .banner-content .banner-footer .arrow-icon {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    /* Smooth transition */
  }
  
  .banner-content .banner-footer .arrow-icon:hover {
    transform: rotate(45deg);
    /* Rotate the icon */
  }
  
  .banner-content .blog-banner-footer .arrow-icon {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    /* Smooth transition */
  }
  
  .banner-content .blog-banner-footer .arrow-icon:hover {
    transform: rotate(45deg);
    /* Rotate the icon */
  }
  
  .banner-content .banner-title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    display: inline;
    padding-bottom: 2px;
    transition: all 0.35s linear;
    background: linear-gradient(to bottom, #3DA8E5 0%, #3DA8E5 98%);
    background-size: 0px 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
  }
  
  .banner-content .banner-title:hover {
    background-size: 100% 2px;
  }
  
  .banner-content .banner-title a:hover {
    color: #274285 !important;
  }
  
  .banner-content .author-name,
  .banner-content .author-name:hover {
    color: #274285 !important;
  }

@media only screen and (max-width: 768px) {

    .blog-main .blog-title {
        padding-right: 0px;
    }

    .blog-main .banner-sm-text {
        margin-top: 20px !important;
    }

    .banner-content {
        gap: 10px;
      }
    
      .blog-content .meta-desc {
        padding-right: 0;
      }
    
      .blog-content .banner-sm-text {
        margin-top: 0px;
      }

      .banner-content .blog-image-thumbnail {
        min-height: auto !important;
      }
    

}