.overlay_img {
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-modal);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.overlay_img.active {
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.overlay_img img {
    border-radius: var(--br-16);
    max-width: 70%;
    max-height: 70%;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.home-global-news-card {
    background-color: var(--card-color);
    position: relative;
}
.home-global-news-card-text {
    overflow-x: hidden;
    border-radius: 5px;
    position: relative;
	height: auto;
}
.home-global-news-date {
    position: absolute;
	z-index: 1;
	text-align: center;
	color: var(--text-custom);
    font-size: 12px;
	top: 55px;
	width: 64px;
    height: 18px;
    overflow: hidden;
    right: 20px;
}
.a-text-href {
    color: var(--color-dark);
    transition: .5s;
}
.home-global-news-card-article {
	height: 100%;
}
.image_news {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	opacity: .7;
}
.home-global-news-card-article > news {
    display: flex;
    flex-direction: column;
	gap: 10px;
    font-size: 14px;
    color: var(--custom-text-color);
    white-space: pre-line;
    height: 100%;
}
.home-global-news-card-article > news > div {
    display: flex;
	background-color: var(--card);
    cursor: pointer;
    height: 80px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    border-radius: var(--br-16);
}
.home-global-news-card-article > news > div:nth-of-type(2) {
    display: block;
    height: auto;
	cursor: default;
	background: var(--card);
    color: var(--text-custom);
    border-radius: var(--br-16);
    padding: 8px 12px;
	height: 210px;
}
@media (max-width: 769px) {
    .home-global-news-card-article > news > div:nth-of-type(2) {
        height: auto;
    }
}
.home-global-news-card-article > news > div:nth-of-type(2) > div {
    display: -webkit-box;
	max-height: 202px;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-global-news-card-article > news > div > a {
    color: var(--span);
}
.home-global-news-badge {
    color: var(--text-custom);
    cursor: pointer;
    position: absolute;
	font-weight: 600;
	z-index: 1;
	left: 20px;
	top: 47px;
    transition: var(--transition-duration);
    background: var(--card);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 6px 10px;
    border-radius: var(--br-8) var(--br-8) 0px 0px;
    width: auto;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}
.home-global-news-badge:hover {
    color: var(--default-text-color);
}
[role=button], a, area, button, input, label, select, summary, textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}
