* {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: black;
}
.heading{
    padding-left: 10vw;
    font-size: 2rem;
    color: white
}
.breaking {
    width: 80vw;
    margin: 0 10vw;
    padding-top: 50px;
    padding-bottom: 50px;
}

.breaking a {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.breaking img {
    width: 60%;
    height: auto;
    transition: filter 0.3s ease;
    flex-shrink: 0;
    border-radius: 16px;
}

.breaking .content {
    flex: 1;
    padding-top: 20px;
}

.breaking h4 {
    color: lightskyblue;
    font-size: 15px;
    margin-bottom: 15px;
    transition: text-decoration 0.3s ease;
}

.breaking h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px;
    transition: text-decoration 0.3s ease;
}

.breaking p {
    color: #fff;
    margin-bottom: 15px;
}

.breaking:hover img {
    filter: grayscale(50%);
    border-radius: 16px;
}

.breaking:hover h3 {
    color: lightskyblue;
}

.latest-news{
    width: 80vw;
    margin: 0 10vw;
    padding-top: -50px;
}
.latest-news hr{
    width: 20%;
    margin-top: -1px;
    margin-left: 0px;
    height: 10px;
    background-color: lightskyblue;
    border: 1px solid lightskyblue;
}
.latest-news h3{
    text-align: left;
    color: #fff;
    font-size: 50px;
}
.container{
    width: 90;
}
.blog-section{
    width: 100%;
    margin-top: 20px;
}
.blog-section .cards{
    display: flex;
    gap: 15px;
    margin: 25px auto;
    overflow-x: auto;
    overflow-y: hidden;
    /* white-space:unset; */
}
.blog-section .cards::-webkit-scrollbar{
    display: none;
    height: 7px;
}
.blog-section .cards::-webkit-scrollbar-thumb{
    background-color: lightskyblue;
    border-radius: 4px;
}
.blog-section {
  width: 100%;
}

/* container wraps cards and buttons */
.cards-container {
  position: relative;        /* establish positioning context */
  overflow: hidden;          /* hide scrollbars outside view */
  width: 100%;
}

/* your existing cards styling */
.blog-section .cards {
  display: flex;
  gap: 15px;
  margin: 25px auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
}

.blog-section .cards::-webkit-scrollbar {
  display: none;
  height: 7px;
}

.blog-section .cards::-webkit-scrollbar-thumb {
  background-color: lightskyblue;
  border-radius: 4px;
}
.scroll-btn {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background-color: rgb(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 10;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}
.blog-section .cards .card{
    flex: 0 0 auto;
    width: 300px;
    position: relative;
    padding-bottom: 10px;
}
.blog-section .image-section img{
    width: 100%;
    height: auto;
    transition: filter 0.3s ease;
    border-radius: 16px;
}
.blog-section a{
    text-decoration: none;
}
.blog-section p{
    color: lightskyblue;
    font-size: 12px;
    padding-top: 5px;
}
.blog-section h3{
    color: #fff;
    font-size: 22px;
    padding-top: 5px;
    transition: filter 0.3s ease;
}
.blog-section h5{
    color: #fff;
    padding-top: 5px;
    font-weight: normal;
}
.blog-section .card:hover img {
    filter: grayscale(50%);
    border-radius: 16px;
}

.blog-section .card:hover h3 {
    text-decoration: none;
    color: lightskyblue;
}
.blog-section .card hr{
    height: 2px;
    margin-top: 7px;
    color: rgb(128, 206, 255);
    width: 40px;
}
.hr hr{
    margin-top: 100px;
}
.latest-news .full-button {
    font-size: medium;
    background-color: transparent;
    padding: 7px 30px;
    color: white;
    height: 50px;
    width: auto;
    text-align: right;
    display: block;
    margin-left: 69vw; 
    border-color: white;
    border-width: 1px;
    border-radius: 12px;
}

.latest-news .full-button:hover{
    background-color: lightskyblue;
    border-radius: 12px;
}

.hr {
    width: 80%;
    margin-left: 10vw;
    background-color: lightskyblue;
    border: 1px solid lightskyblue;
    height: 2px;
}
.mid-hr hr{
    margin-top: 5vh;
    margin-left: 20vh;
    width: 80%;
    color: lightskyblue
}