.btnColor{
    background-color: #1877f2;
}

.my-truncate {
   display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 400px; /* Adjust the max-width as needed */
  height: 80px;
}

.my-truncate-details {
    display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
   max-width: 100%; /* Adjust the max-width as needed */
   height: 80px;
 }



@-webkit-keyframes placeHolderShimmer{
    0%{
        background-position:-468px 0
    }
    100%{
        background-position:468px 0
    }
}

@keyframes placeHolderShimmer{
    0%{
        background-position:-468px 0
    }
    100%{
        background-position:468px 0
    }
}

.timeline-wrapper {
    background-color: #fff;
    color: #141823;
    padding: 20px;
    /* border: 1px solid #ccc; */
    margin: 30px auto 1em;
}

.timeline-item {
    position: relative;
    background: #fff;
    /* border: 1px solid; */
    /* border-color: #e5e6e9 #dfe0e4 #d0d1d5; */
    border-radius: 3px;
    padding: 12px;
    margin: 0 auto;
    width: 100%;
    min-height: 200px;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: placeHolderShimmer;
    animation-name: placeHolderShimmer;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: #eeeeee;
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eeeeee), color-stop(18%, #dddddd), color-stop(33%, #eeeeee));
    background: -webkit-linear-gradient(left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background: linear-gradient(to right,  #eeeeee 8%,#dddddd 18%,#eeeeee 33%);
    -webkit-background-size: 800px 104px;
    background-size: 800px 104px;
    height: 100%;
}


.background-masker {
    background: #fff;
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.outlined .background-masker {
    border: 1px solid #ddd;
}


.outlined:hover .background-masker {
    border: none;
}

.outlined:hover .background-masker:hover {
    border: 1px solid #ccc;
    z-index: 1;
}

.background-masker.header-top,
.background-masker.header-bottom,
.background-masker.subheader-bottom {
    top: 0;
    left: 40px;
    right: 0;
    height: 10px;
}

.background-masker.header-left,
.background-masker.subheader-left,
.background-masker.header-right,
.background-masker.subheader-right {
    top: 10px;
    left: 40px;
    height: 8px;
    width: 10px;
}

.background-masker.header-bottom {
    top: 18px;
    height: 6px;
}

.background-masker.subheader-left,
.background-masker.subheader-right {
    top: 24px;
    height: 6px;
}


.background-masker.header-right,
.background-masker.subheader-right {
    width: auto;
    left: 300px;
    right: 0;
}

.background-masker.subheader-right {
    left: 230px;
}

.background-masker.subheader-bottom {
    top: 30px;
    height: 10px;
}

.background-masker.content-top,
.background-masker.content-second-line,
.background-masker.content-third-line,
.background-masker.content-second-end,
.background-masker.content-third-end,
.background-masker.content-first-end {
    top: 40px;
    left: 0;
    right: 0;
    height: 6px;
}

.background-masker.content-top {
    height:20px;
}

.background-masker.content-first-end,
.background-masker.content-second-end,
.background-masker.content-third-end{
    width: auto;
    left: 380px;
    right: 0;
    top: 60px;
    height: 8px;
}

.background-masker.content-second-line  {
    top: 68px;
}

.background-masker.content-second-end {
    left: 420px;
    top: 74px;
}

.background-masker.content-third-line {
    top: 82px;
}

.background-masker.content-third-end {
    left: 300px;
    top: 88px;
}

/* Ensure images don't overflow */
.ads-area img {
    max-width: 100%;
    height: auto;
}

/* Prevent overflow on cards and articles */
article, .card {
    max-width: 100%;
    overflow: hidden;
}

/* Mobile responsiveness for news items */
@media (max-width: 768px) {
    .timeline-wrapper {
        padding: 10px;
    }
    .timeline-item {
        min-height: 150px;
        padding: 8px;
    }
    .background-masker {
        display: none; /* Hide skeleton maskers on mobile to prevent overflow */
    }
    .animated-background {
        height: 100%;
        background-size: 400px 80px; /* Smaller shimmer */
    }
    .my-truncate {
        max-width: 100%;
        height: auto;
        -webkit-line-clamp: 2;
    }
    .my-truncate-details {
        max-width: 100%;
        height: auto;
        -webkit-line-clamp: 2;
    }
    .ads-area img {
        width: 100%;
        height: auto;
    }
}
