
/* kv */
.kv{ background-image: url(../img/about/kv.jpg);}

/* profile */
.profile{ margin-top: 150px;}
.profile .wrap{ display: flex; justify-content: space-between;}
.profile .left img{ max-width: 540px; border-radius: 18px; }
.profile .right{ flex: 1; margin-left: 100px; font-size: 16px; line-height: 32px;}
.profile .right p{ margin-bottom: 50px;}

.video{  margin-top: 50px; background-color: #EEE;}

/* news */
.latest-news{ background-color: #f2f2f2; margin-top: 150px; padding: 100px 0; }
.latest-news .list{ display: flex;}
.latest-news .list .left{ font-size: 32px; line-height: 42px; font-family: 'Inter-Black'; width: 305px;}
.latest-news .list .right{ flex: 1; margin-left: 100px;}
.latest-news .announcements{ margin-top: 100px;}
.latest-news .item{ margin-bottom: 50px;}
.latest-news .item a{ display: flex; color: var(--color-black); align-items: start; font-size: 16px; line-height: 38px;}
.latest-news .item a .time{ width: 180px;  font-family: 'Inter-Black'; position: relative;}
.latest-news .item a .title{ flex: 1;  margin-left: 100px; position: relative;}
.latest-news .item a:hover{ color: var(--color-orange);}
.latest-news .item a:hover .title::after{ content: ''; position: absolute; width: 100%; left: 0; bottom: -10px; border-bottom: 1px solid var(--color-orange);}
.latest-news .item a:hover .time::before{ content: ''; position: absolute; width: 10px; height: 10px; margin-top: -5px; left: -30px; top: 50%; line-height: 0; background-color: var(--color-orange); border-radius: 50%; }
.btn-showall{ display: inline-block; height: 34px; line-height: 34px; color: #FFF; background-color: var(--color-blue); padding: 0 30px; border-radius: 34px;}
.btn-showall:hover{ opacity: 0.8;}

/* common */
.btn-blue{ min-width: 123px; border-radius: 34px; display: inline-block; padding: 8px 25px; color: #FFF; text-align: center; background-color: var(--color-blue); border: none;cursor: pointer;}
.btn-blue:hover{opacity: .8;}

/* youtube */
.video-container { 
    position: relative; 
    padding-bottom: calc(56.25% * 0.75); /* 16:9 */ 
    width: 100%; 
    height: 0; 
  } 
  .video-container iframe { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
  } 


/* dark model */
 
body.dark .latest-news{ background-color: #111;}
body.dark .latest-news .item a {
    color: #EEE;
}


@media screen and (max-width: 640px) {

    /* kv */
    .kv {
      background-image: url(../img/about/kv-mo.jpg);
    }
    /* profile */
    .profile {
        margin-top: 50px;
    }
    .profile .wrap{ flex-direction: column;}
    .profile .left img {
        max-width: 100%;
        border-radius: 12px;
    }
    .profile .right {
        margin-left: 0;
        font-size: 1rem;
        line-height: 24px;
        margin-top: 30px;
    }
    .video {
        height: 240px;
        margin-top: 18px;
        background-position: center center;
    }
    /* news */
    .latest-news {
        margin-top: 50px;
        padding: 50px 0;
    }
    .latest-news .list {
        flex-direction: column;
    }
    .latest-news .list .left {
        font-size: 22px;
        line-height: 24px;
        width: auto;
    }
    .latest-news .list .right {
        margin-left: 0;
        margin-top: 30px;
    }
    .latest-news .item a {
        flex-direction: column;
        font-size: 14px;
        line-height: 28px;
    }
    .latest-news .item a .time {
        width: auto;
    }
    .latest-news .item a .title {
        margin-left: 0;
    }
    .video-container{ height: 100%;}
}