/*
Theme Name: dwr
Theme URI: https://git.piesoft.net/DWR/wordpress/theme/dwr-main
Description: Child theme of Twenty Twenty-Four (FSE)
Author: piesoft
Template: twentytwentyfour
Version: 1.0.0
*/
/* .news-card-type-1 {
  display: grid;
  grid-template-columns: 50% 50%;
  background-color: ;
  padding: 10px;
  gap: 10px;

  .new-img-type-1 {
    width: 300px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
  }
  .new-title-type-1 {
    margin: 10px;
  }
  .new-excerpt-type-1 {
    margin: 0px;
    margin-left: 10px;
    margin-right: 10px;
  }
} */
.new-type-1-first {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 10px;
  gap: 15px;
  border-radius: 32px;
}
.new-type-1-first img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.new-type-1-first h2 {
  margin: 10px;
  margin-left: 0px;
}
.new-type-1-first p {
  margin: 0px;
  /* margin-left: 10px; */
  margin-right: 10px;
}
.btn-read {
  border-radius: 32px;
  border-width: 2px;
  border-style: solid;
}
.btn-read:focus {
  border-style: none !important;
}
/* .new-type-1 {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 10px;
  gap: 10px;
  img {
    width: 300px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
  }
  h3 {
    margin: 10px;
  }
  p {
    margin: 0px;
    margin-left: 10px;
    margin-right: 10px;
  }
} */

.content-wrap {
  height: 300px !important;
  overflow-y: scroll; 
}

body {
  --sb-track-color: #9ea8c0;
  --sb-thumb-color: #2196F3;
  --sb-size: 2px;
}

.content-wrap::-webkit-scrollbar {
  width: var(--sb-size);
}

.content-wrap::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 20px;
}

.content-wrap::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 20px;
}

@supports not selector(::-webkit-scrollbar) {
  .content-wrap {
      scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}