* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
    text-decoration: none;
    color: #121212;
}
a:hover {
    color: #0F75BC;
}

body {
  font-family: 'Helvetica', sans-serif;
  font-size: 12px;
  line-height: 18px;
  background-color: #FCFCFC;
  color: #121212;
}

.container {
  min-width: 1100px;
  margin: 0 auto;
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 320px;
  background-color: #FFFFFF;
  border-right: 1px solid #D9DBE9;
  display: flex;
  flex-direction: column;
  position:sticky;
    top:0;
    height: 100dvh;
}

.profile-section {
  padding: 16px 24px;
  border-bottom: 1px solid #D9DBE9;
  background-color: #FFFFFF;
}

.profile-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}

.profile-description {
  font-size: 12px;
  line-height: 17px;
  color: #6E7191;
}

.profile-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px;
  background-color: #D9DBE9;
  border-radius: 16px;
}

.link-icon {
  width: 16px;
  height: 16px;
}

.link-text {
  font-size: 12px;
  line-height: 17px;
  color: #4E4B66;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.stats-container {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding-right: 20px;
}

.stats-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #121212;
}

.stats-label {
  font-size: 12px;
  line-height: 17px;
  color: #6E7191;
}

.navigation {
  padding: 24px;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  color: #121212;
}

.nav-item.active, .nav-item:hover {
  background-color: #EFF0F6;
  color: #121212;
}

.nav-icon {
  width: 32px;
  height: 32px;
}

.nav-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.nav-item.active .nav-text {
  font-weight: 600;
}

.sidebar-footer {
  margin-top: auto;
  padding: 24px;
}

.search-box {
    background-color: #ffffff;
    border: 1px solid #D9DBE9;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
    gap:16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.search-box input {
    background: none;
    border: none;
    -webkit-appearance: none;
    width: 100%;
    outline: none;
}
.search-box i {
    color: #6E7191;
}
.search-box button {
    background: none;
    outline: none;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #121212;
}
.search-result {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #121212;
}
.search-result span {
    font-weight: 600;
}
.recomendation {
    background-color: #fff;
    border: 1px solid #D9DBE9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius:16px;
    position: relative;
    overflow: hidden;
}
.recomendation-title {
    font:16px/24px 'Poppins', sans-serif;
    font-weight: 600;
    color: #121212;
    padding: 16px;
}
.recomendation ul {
    list-style: none;
}
.recomendation ul li {
    padding: 16px;
    border-bottom:1px solid #D9DBE9;
    font:14px/24px 'Poppins', sans-serif;
}
.recomendation i {
    padding: 4px;
    background-color: #EFF0F6;
    color: #4E4B66;
    border-radius: 16px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
} 
.recomendation span {
    display:inline-block;
    vertical-align: middle;
}

.social-icons {
  display: flex;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.social-icon {
  width: 32px;
  height: 32px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #6E7191;
  text-decoration: none;
}
.footer-link:after {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #D9DBE9;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
    border-radius: 4px;
}
.footer-link:last-child::after {
    display: none;
}

.footer-separator {
  width: 4px;
  height: 4px;
}

.footer-divider {
  width: 272px;
  height: 1px;
  background-color: #D9DBE9;
  margin-bottom: 16px;
}

.copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #6E7191;
}

.main-content {
  flex: 1;
  padding: 24px 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-wrapper {
  display: block;
  width: 740px;
  position: relative;
}

.banner {
  width: 970px;
  height: 250px;
  background-color: #EFF0F6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 34px;
  color: #6E7191;
}

.news-card {
  width: 480px;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 24px auto;
  position: relative;
}

.news-image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  background-color: #121212;
  position: relative;
}
.news-image img {
  max-width: 100%; 
  height: auto; 
  display: block;
  object-fit: contain;
}
.video-container video, .video-container iframe {
  width: 100%;           /* Video takes the full width of its container */
  height: auto;          /* Height is calculated automatically */
  aspect-ratio: 16 / 9;  /* Maintains a 16:9 aspect ratio */
  margin-bottom: 24px;
}
.slider {
    display: block;
    height: auto;
    width: 100%;
}
.ratio1-1 img{
    aspect-ratio: 1 / 1;
}
.ratio191-1 img{
    aspect-ratio: 1.91 / 1;
}
.ratio4-5 img{
    aspect-ratio: 4 / 5;
}
.news-image-caption {
    font:14px/24px 'poppins', sans-serif;
    color: #6E7191;
    margin:16px 0 24px;
}

.news-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-text-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-title {
  font-family: 'poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #121212;
}
.detail-title {
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.4;
    color: #121212;
    padding:56px 0 24px;
}
.detail-text {
    font:16px/26px 'Helvetica', sans-serif;
    color: #121212;
    padding-bottom: 24px;
    border-bottom: 1px solid #D9DBE9;
}
.detail-text p {
    padding:0 0 24px;
}
.detail-text a {
    font-family: 'Helvetica', sans-serif;
    color: #0F75BC;
    font-weight: 600;
}
.detail-text b, .detail-text strong {
    font-family: 'Helvetica', sans-serif;
    font-weight: 600;
}
.detail-social {
    padding: 24px 0;
    border-bottom: 1px solid #D9DBE9;
    text-align: center;
    display:block;
}
.detail-social-title {
    font:18px/26px 'poppins', sans-serif;
    font-weight: 600;
    color: #121212;
    margin-bottom: 16px;
}
.space-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}

.news-date {
  font-family: 'poppins', sans-serif;
  font-size: 12px;
  color: #6E7191;
}

.news-excerpt {
  font-size: 14px;
  line-height: 21px;
  color: #4E4B66;
  display: -webkit-box;
  -webkit-line-clamp: 2;          /* Limits the text to 3 lines */
  -webkit-box-orient: vertical;   /* Stacks the box's contents vertically */
  overflow: hidden;               /* Hides any text beyond the clamp limit */
  text-overflow: ellipsis;
}

.news-tags {
  display: flex;
  gap: 4px;
}

.news-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #0F75BC;
  text-decoration: none;
}

.news-actions {
  display: flex;
  gap: 24px;
}
.pinned {
    background-color: rgba(255,255,255,0.7);
    color: #121212;
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 8px;
    padding: 4px 8px 4px 4px;
    display: flex;
    align-items: center;
    z-index: 1;
}
.close-button {
    padding: 8px;
    background-color: #ffffff;
    position: absolute;
    right: 0;
    border-radius: 32px;
    border:1px solid #D9DBE9;
    height: 42px;
}
.pinned i {
    margin-right: 4px;
}
.action-item {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
}
.pointer {
    cursor: pointer;
}
.action-icon {
  width: 24px;
  height: 24px;
}

.action-text {
    font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #A0A3BD;
}

.small-banner {
  width: 300px;
  height: 250px;
  background-color: #EFF0F6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.carousel-container {
  position: relative;
  width: 480px;
  height: 600px;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 15px;
}

.carousel-indicator {
  width: 24px;
  height: 6px;
  background-color: #FFFFFF;
  border-radius: 6px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 2px solid rgba(18, 18, 18, 0.3);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.carousel-nav.prev {
  left: 12px;
}

.carousel-nav.next {
  right: 12px;
}

/* Slider */
.slick-slider
{
    /* position: relative; */

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    /* display: block; */
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-nav {
    position: absolute;
    bottom: 24px;
    width: 100%;
    text-align: center;
    display: block;
    cursor: pointer;
}
.slick-nav li {
    width: 8px;
    height: 8px;
    font-size: 0px;
    display: inline-block;
    background-color: rgba(255,255,255,0.5);
    border-radius: 8px;
    margin: 0 4px;
}
.slick-nav li.slick-active {
    background-color: #ffffff;
    width: 24px;
}
.slick-nav li button {
    text-indent: -999999px;
    height: 0px;
    background: none;
    border: none;
}
.slider-items {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.slick-arrow {
    position: absolute;
    width: 32px;
    height: 32px;
    background-color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:32px;
    z-index: 1;
    border:2px solid rgba(0,0,0,0.3);
    cursor: pointer;
}
.slick-prev {
    left:16px;
}
.slick-next {
    right:16px;
}

/* Loader */
.loader {
    width: 40px;
    margin:0 auto;
}

/* MARGIN */
.mb-24 {
    margin-bottom: 24px;
}
.mt-24 {
    margin-top: 24px;
}

/* POPUP */

/* Popup overlay */
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

/* Active popup */
.popup.active {
    opacity: 1;
    pointer-events: auto;
}

/* Popup box */
.popup-content {
    background: #fff;
    padding: 20px;
    width: 320px;
    border-radius: 12px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.popup-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.popup.active .popup-content {
    transform: scale(1);
}

/* Close */
.close {
    position: absolute;
    right: 12px;
    top: 10px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* Share buttons */
.share-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

/* Copy link */
.copy-link {
    display: flex;
    gap: 6px;
}

.copy-link input {
    flex: 1;
    padding: 8px;
    border: 1px solid #D9DBE9;
    border-radius: 16px;
}

.copy-link button {
    padding: 8px 12px;
    background: #0F75BC;
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
}

#copyMessage {
    margin-top: 8px;
    color: #4E4B66;
    font-size: 14px;
}


@media (max-width: 1200px) {
  /* .container {
    max-width: 100%;
  } */
  
  .banner {
    width: 100%;
    max-width: 970px;
  }
}

@media (max-width: 768px) {
  /* .container {
    flex-direction: column;
  } */
  
  /* .sidebar {
    width: 100%;
    position: relative;
  } */
  
  .main-content {
    padding: 20px;
  }
  
  .news-card {
    width: 100%;
    max-width: 480px;
  }
  
  .carousel-container {
    width: 100%;
    max-width: 480px;
  }
}
