
.recenttitle{
    margin-bottom: 32px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-outfit);
    color: #181818;
}
.highligted .recenttitle span{
    display: inline-block;
}
.highligted .recents{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
}
.highligted .recents .rightside{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.blogcard a{
    text-decoration: none;
    width: 100%;
    display: block;
}
.blogcard .imagebox{
    padding-top: calc(240 / 384 * 100%);
    position: relative;
    overflow: hidden;
}
.blogcard .imagebox img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    transition:all 0.4s var(--easePunchy);
}
.blogcard a:hover img{
    transform: scale(1.05);
}
.blogcard .contentbx{
    padding: 32px 0 0 0;
}
.blogcard .contentbx .about{
    color: #009748;
    font-weight: 700;
    font-size: 0.875rem;
}
.blogcard .contentbx .title{
    display: flex;
    align-items: flex-start;
    font-size: 1.5rem;
    font-family: var(--font-outfit);
    font-weight: 700;
    color: #181818;
    margin: 16px auto 12px auto;
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    line-height: 1.4;
}
.blogcard .contentbx .title span{
    max-width: calc(100% - 40px);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
}
.blogcard .contentbx .title svg{
    transition:all 0.4s var(--easePunchy);
}
.blogcard a:hover .title svg{
    transform: rotate(45deg);
}
.blogcard .s_copy{
    font-size: 1rem;
    font-weight: 400;
    color: #7B7B7B;
    line-height: 1.3;    
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
}
.recents .rightside .blogcard a{
    display: flex;
    gap: 24px;
}
.recents .rightside .blogcard .contentbx{
    flex: 1;
    align-items: flex-start;
    padding-top: 0;
}
.recents .rightside .blogcard .imagebox{
    flex: 1.5;
}
.highligted .recents .rightside .imagebox{
    padding-top: calc(200 / 500 * 100%);
}
.bloglist_gr{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:48px 32px;
}
.blog_det .blog_title{
    overflow: hidden;
}
.blog_det .blog_title p{
    font-size: 2.5rem;
    font-weight: 500;
    font-family: var(--font-outfit);
    line-height: 1.4;
}
.blog_det .imagebx{
    /* padding-top: calc(420 / 1232 * 100%); */
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.blog_det .imagebx img{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
}
.blog_det .detail_gr{
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap: 16px;
    margin-top: 32px;
}
.blog_det .detail_gr .leftside{
    grid-column: span 8;
}
.blog_det .detail_gr .rightside{
    grid-column: span 4;
}
.blog_det .detail_gr .rightside .author .authtitle{
    font-size: 1.25rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 16px;
}
.blog_det .detail_gr .rightside .author .top{
    display: flex;
    gap: 16px;
}
.blog_det .detail_gr .rightside .author .top .img{
    height: 50px;
    width: 50px;
    overflow: hidden;
    border-radius: 50%;
}
.blog_det .detail_gr .rightside .author .top .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog_det .detail_gr .rightside .author .top .rgt p{
    font-size: 1rem;
    color: #808080;
    font-weight: 400;
}
.blog_det .detail_gr .rightside .author .top .rgt p.name{
    font-size: 1.25rem;
    font-weight: 400;
    font-family: var(--font-outfit);
    color: #000000;
}
.detail h1,
.detail h2,
.detail h3,
.detail h4,
.detail h5,
.detail h6 {
  margin-bottom: 15px;
  font-weight: 500;
  color: black;
  font-family: var(--font-outfit);
}


.detail h1 {
  font-size: 2.5rem;
}

.detail h2 {
  font-size: 2rem;
}

.detail h3 {
  font-size: 1.75rem;
}

.detail h4 {
  font-size: 1.25rem;
}

.detail h5,
.detail h6 {
  font-size: 1rem;
}

.detail p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: black;
  font-size: 1rem;
  font-weight: 300;
}

.detail a {
  color: #1aa3ee;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
}

.detail h1 a,
.detail h2 a,
.detail h3 a,
.detail h4 a,
.detail h5 a,
.detail h6 a{
  margin-bottom: 15px;
  font-weight: 500;
  color: black;
  font-family: var(--font-outfit);
  font-size:inherit;
}

.detail a:hover {
  text-decoration: underline;
}

.detail ul{
    list-style-type: disc;
}
.detail ol {
    list-style-type: inherit;
}
.detail ul,
.detail ol {
  margin-bottom: 20px;
  padding-left: 40px;
  list-style-type: inherit;
}
.detail ul li,
.detail ol li {
  margin-bottom: 10px;
}

.detail img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
}

.detail table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.detail table th,
.detail table td {
  padding: 10px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.detail th {
  background-color: #f1f1f1;
}

.detail blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  background-color: #f1f1f1;
  border-left: 4px solid #0077cc;
  font-style: italic;
  color: #555;
}

.detail pre {
  background-color: #272822;
  color: #f8f8f2;
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
}

.detail code {
  font-family: 'Courier New', monospace;
}

.detail hr {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 30px 0;
}

/* Media query for less than tablet breakpoint (you need to define this based on your design) */
@media (max-width: 991px) {
  .detail .imagebox img {
    min-width: 100%;
  }
}
/* tab  */
@media only screen and (max-width: 991px) {
    .bloglist_gr{
        grid-template-columns: repeat(1,1fr);
        gap: 24px;
    }
    .highligted .recents{
        grid-template-columns: repeat(1,1fr);
        gap: 24px;
    }
    .recents .rightside .blogcard a{
        display: block;
    }
    .highligted .recents .rightside .imagebox{
        padding-top: calc(240 / 384 * 100%);
    }
    .blogcard .contentbx{
        padding-top: 16px;
    }
    .recents .rightside .blogcard .contentbx{
        padding-top: 16px;
    }
    .blog_det .blog_title p{
        font-size: 1.5rem;
    }
    .blog_det .detail_gr .leftside,.blog_det .detail_gr .rightside{
        grid-column: span 12;
    }
    
    .detail h1 {
        font-size: 1.5rem;
    }
  
    .detail h2 {
        font-size: 1.25rem;
    }
  
    .detail h3 {
        font-size: 1rem;
    }
  
    .detail h4 {
        font-size: 1rem;
    }
  
    .detail h5,
    .detail h6 {
        font-size: 0.875rem;
    }
    .blog_det .detail_gr{
        margin-top:0px;
    }
    .blog_det .imagebx{
        margin-bottom:16px;
    }
}