﻿/* Base Styles & Reset */
:root {
    --primary-blue: #0070c0;
    --dark-blue: #005999;
    --light-blue: #eef7ff;
    --text-dark: #333333;
    --text-gray: #777777;
    --border-color: #dddddd;
    --white: #ffffff;
    --hover-blue: #0056b3;
    --bg-gray: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-gray);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#back-to-top {
    position: fixed;
    bottom: 15%;
    right: 2%;
    width: 50px;
    height: 50px;
    font-size: 14px;
    background: #1574D3;
    border-radius: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
    -webkit-transition: opacity 0s ease-out;
    -o-transition: opacity 0s ease-out;
    transition: opacity 0s ease-out;
    z-index: 90;
    display: none;
    color: #fff;
}

#back-to-top.show {
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* border: 1px solid var(--primary-color); */
}

/* Header */
.top-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area .logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.brand-name h1 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.brand-name p {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

.cms-content-images table,
.cms-content-images th,
.cms-content-images td {
    border: none !important;
}

.cms-content-images td {
    padding: 0px 8px;
}

.site-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

/*search-wrap*/
.search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.btn-search {
    cursor: pointer;
    color: var(--primary-blue);
    transition: 0.3s;
    padding: 15px 0;
}

.btn-search:hover {
    opacity: 0.7;
}

.form-search {
    position: absolute;
    right: 15px;
    top: 100%;
    background: white;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1050;
    min-width: 250px;
    border: 1px solid #eee;
}

.form-search.active {
    display: flex;
    align-items: center;
}

.form-search .form-control {
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 0.85rem;
    padding: 5px 10px;
    width: 100%;
    outline: none;
}

.form-search .btn-search-submit {
    color: var(--primary-blue);
    border: none;
    background: none;
    margin-left: 8px;
    cursor: pointer;
}

/* Navigation */
.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
}

.nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: var(--light-blue);
    color: var(--dark-blue);
}

/* Dropdown Menu Styles */
.nav-menu li {
    position: relative;
}

.nav-menu li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
    z-index: 101;
    border-top: 3px solid var(--primary-blue);
}

.nav-menu li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li .submenu li {
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.nav-menu li .submenu li:last-child {
    border-bottom: none;
}

.nav-menu li .submenu li a {
    padding: 12px 20px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu li .submenu li a:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

/* Multi-level Dropdown */
.nav-menu li .submenu .submenu {
    top: 0;
    left: 100%;
    border-top: none;
    border-left: 3px solid var(--primary-blue);
}

.nav-search {
    padding: 15px;
    color: var(--primary-blue);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 15px;
}

/* Hero Banner */
.hero-banner {
    background: #00529b;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.hero-text h3 {
    font-size: 1rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 0 10px;
    border-radius: 5px;
    display: inline-block;
}

.hero-stats {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-stats em {
    font-style: normal;
    font-weight: 900;
    font-size: 1.8rem;
    color: #ffd700;
}

.hero-action {
    display: flex;
    gap: 20px;
}

.deadline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 10px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
}

.deadline span {
    font-size: 0.9rem;
    display: block;
}

.deadline strong {
    font-size: 1.5rem;
    display: block;
    margin-top: 5px;
}

.qr-code {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--text-dark);
    padding: 10px;
    border-radius: 10px;
}

.qr-code span {
    font-size: 0.9rem;
    font-weight: 700;
    text-align: right;
    line-height: 1.2;
}

.qr-code img {
    width: 60px;
    height: 60px;
}

.hero-image {
    flex: 1;
    text-align: right;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Swiper Slider Styles */
.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 20px;
    border-radius: 5px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--white);
    opacity: 1;
}

/* Action Cards */
.action-cards {
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.cards-container {
    display: flex;
    gap: 20px;
}

/* HueBen: Chỉnh sửa ảnh action-cards tràn viền */
.card {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card .card-content {
    width: 100%;
    height: 100%;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Area */
.content-area {
    padding: 40px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.news-section,
.notice-section {
    display: flex;
    flex-direction: column;
}

.news-list,
.notice-list {
    flex-grow: 1;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header .view-all {
    font-size: 0.9rem;
    font-weight: 500;
}

/* News List */
.news-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-item img {
    width: 160px;
    height: 110px;
    object-fit: cover;
    border-radius: 5px;
}

.news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-info span img,
.news-info .icon_news_hot,
.news-info .icon_news_new {
    margin-right: 5px;
    vertical-align: middle;
    margin-bottom: 8px;
    display: inline-block;
    height: 20px;
    width: auto;
}

.news-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-item:hover h3 {
    color: var(--primary-blue);
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Notice List */
.notice-list {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.notice-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.notice-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notice-date {
    background: var(--primary-blue);
    color: var(--white);
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    flex-shrink: 0;
}

.notice-date .day {
    font-size: 1.2rem;
    font-weight: 700;
}

.notice-date .month {
    font-size: 0.65rem;
    text-transform: uppercase;
}

.notice-item h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.notice-item:hover h3 {
    color: var(--primary-blue);
}

/* Grid Sections */
.university-admission,
.postgrad-admission {
    padding-bottom: 40px;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card-news {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.card-news:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-news > img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card-news span {
    padding: 0 15px 15px;
    display: block;
}

.card-news span img {
    height: 20px;
    width: auto;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}

.card-news h3 {
    padding: 15px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.card-news:hover h3 {
    color: var(--primary-blue);
}

/* Footer */
.site-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding-top: 40px;
    border-top: 4px solid #f29a1d;
}

.footer-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-logo {
    align-self: center;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #f29a1d;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--white);
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}

.social-icons a:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.social-icons a i[class=""] {
    font-style: normal;
    font-weight: 700;
    font-size: 0.8rem;
}

.footer-bottom {
    background-color: var(--dark-blue);
    padding: 15px 0;
    font-size: 0.9rem;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Use CKEditor end */


.success-page-wrap {
    background-color: #F3F7FB;
}

.success-page-wrap .success-page {
    padding: 20px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 26px 0px rgba(182, 214, 252, 0.50);
}

.success-page .title-page h3 {
    color: #024282;
    font-size: 1.375rem;
    font-weight: 700;
}

.success-page .desc-page p {
    font-size: 1rem;
    font-weight: 600;
    color: #1C1C1C;
    line-height: 150%;
}

.success-page .redirect-page p {
    font-size: 1rem;
    color: #1C1C1C;
    font-style: italic;
}

.success-page .btn-backHome a {
    padding: 10px 20px;
    display: inline-block;
    border-radius: 8px;
    background: #00AEED;
    box-shadow: 1px 4px 6px 0px rgba(0, 127, 243, 0.20);
    color: #fff;
}

/* -------------------------------------- */
/* ADDITIONAL STYLES FOR INNER PAGES */
/* -------------------------------------- */
/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--primary-blue);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--dark-blue);
}

.breadcrumb i {
    margin: 6px 10px;
    font-size: 0.8rem;
    color: #ccc;
}

/* Page Layout (Sidebar + Content) */
.page-layout {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 30px;
    padding: 20px 0 40px;
}
.page-layout-search {
    display: grid;
    /*grid-template-columns: 7fr 3fr;*/
    gap: 30px;
    padding: 20px 0 40px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.widget-title {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px 5px 0 0;
}

.widget-content {
    padding: 15px;
}

.related-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.related-item h4 {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.contact-widget p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.banner-widget img {
    width: 100%;
    border-radius: 8px;
}

/* Article Detail */
.article-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.social-share {
    display: flex;
    gap: 10px;
}

.social-share a {
    color: var(--text-gray);
    transition: color 0.3s;
}

.social-share a:hover {
    color: var(--primary-blue);
}

.article-summary {
    background: var(--bg-gray);
    padding: 20px;
    border-radius: 8px;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 30px;
}

.article-content p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Category List */
.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-blue);
    padding: 10px 15px;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-list-page {
    border: 1px solid var(--border-color);
    border-top: none;
    padding: 0 20px 20px;
    border-radius: 0 0 5px 5px;
    background: var(--white);
}

.list-news-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.list-news-item:last-of-type {
    border-bottom: none;
}

.list-news-item img {
    width: 250px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.list-news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.list-news-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.list-news-summary {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    flex-grow: 1;
}

.btn-readmore {
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.news-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.btn-readmore:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.pagination a.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-action {
        justify-content: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .cards-container {
        flex-wrap: wrap;
    }

    .card {
        min-width: calc(50% - 10px);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats em {
        font-size: 1.5rem;
    }

    .hero-action {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .grid-2x2,
    .grid-4,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .card {
        min-width: 100%;
    }

    .news-item {
        flex-direction: column;
    }

    .news-item img {
        width: 100%;
        height: auto;
    }

    .bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Inner pages responsive */
    .page-layout {
        grid-template-columns: 1fr;
    }

    .list-news-item {
        flex-direction: column;
    }

    .list-news-item img {
        width: 100%;
        height: auto;
    }

    /* Mobile Dropdown Menu Fix */
    .nav-menu li .submenu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-top: none;
        background-color: var(--bg-gray);
    }

    .nav-menu li:hover>.submenu {
        display: block;
    }

    .nav-menu li .submenu .submenu {
        position: static;
        border-left: none;
    }

    .nav-menu li .submenu li a {
        padding-left: 30px;
    }

    .nav-menu li .submenu .submenu li a {
        padding-left: 45px;
    }

    .nav-menu li .submenu .submenu .submenu li a {
        padding-left: 60px;
    }

    .search-wrap {
        position: static;
    }

    .form-search {
        right: 15px;
        left: 15px;
        width: auto;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .logo-area {
        flex-direction: column;
        gap: 5px;
    }

    .logo-area .logo {
        width: 45px;
        height: 45px;
    }

    .brand-name h1 {
        font-size: 1rem;
    }

    .site-title h2 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        font-size: 1rem;
    }

    .hero-stats em {
        font-size: 1.3rem;
    }

    .qr-code {
        flex-direction: column;
        text-align: center;
    }

    .qr-code span {
        text-align: center;
    }

    .deadline {
        width: 100%;
    }
}