@charset "utf-8";

:root {
    --font-sans: "Noto Sans", Inter, Roboto, "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    --font-display: "Noto Sans", Inter, Roboto, "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

html {
    color: #18212f;
    font-size: 16px;
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 10% 0, rgba(240, 193, 90, .12) 0, rgba(240, 193, 90, 0) 28%),
        linear-gradient(180deg, #e7f0f4 0, #f7fafb 260px, #eef3f6 100%);
    color: #18212f;
    font-family: var(--font-sans);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body * {
    box-sizing: border-box;
}

a {
    color: #155f7a;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

a:hover,
a:focus {
    color: #0d4155;
}

img {
    max-width: 100%;
    height: auto;
}

#page {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

#header {
    height: auto;
    min-height: 120px;
    padding: 24px 34px 20px;
    color: #f7fbfd;
    text-align: left;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background:
        linear-gradient(135deg, rgba(240, 193, 90, .16) 0, rgba(240, 193, 90, 0) 34%),
        linear-gradient(135deg, #102b3b 0, #185f78 54%, #27879a 100%);
}

#header table,
#header tbody,
#header tr {
    display: block;
    width: 100%;
}

#header table {
    max-width: 1180px;
    margin: 0 auto;
}

#header tr {
    display: flex;
    align-items: center;
    gap: 24px;
}

#header td {
    display: block;
    float: none;
    width: auto !important;
}

#header td:first-child,
#header td:last-child {
    flex: 0 0 260px;
}

#header td:nth-child(2) {
    flex: 1 1 auto;
    text-align: center;
}

#header a {
    color: inherit;
    text-decoration: none;
}

.site-title {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: .32em;
    margin: 4px 0 6px;
    padding: 0 0 0 18px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
    font-feature-settings: "kern" 1;
    white-space: nowrap;
}

.site-title-main,
.site-title-accent {
    display: inline !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
}

.site-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    border-radius: 99px;
    background: #f0c15a;
}

.site-title-accent {
    display: inline !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
    color: #f0c15a;
}

.site-tagline {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 400;
}

.page-title {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-weight: 700;
    line-height: 1.25;
}

#header #header_langs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 7px;
    padding: 0;
    text-align: left;
    font-size: 13px;
}

#header #header_langs a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
}

#header #header_langs a:hover,
#header #header_langs a:focus {
    color: #123142;
    text-decoration: none;
    border-color: rgba(255, 255, 255, .7);
    background: #fff;
}

#header #header_sitemap {
    margin-bottom: 10px;
    text-align: right;
    font-size: 13px;
}

#header #header_sitemap a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}

#header #header_sitemap a:hover {
    color: #fff;
    text-decoration: underline;
}

#header form {
    display: flex;
    justify-content: flex-end;
}

#header input[name="query"] {
    width: 100% !important;
    max-width: 260px;
    height: 42px !important;
    margin: 0 !important;
    padding: 9px 14px;
    color: #1f2e3d;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 999px;
    outline: none;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 28px rgba(9, 31, 42, .18);
}

#header input[name="query"]:focus {
    border-color: #f0c15a;
    box-shadow: 0 0 0 3px rgba(240, 193, 90, .22), 0 10px 28px rgba(9, 31, 42, .18);
}

center {
    display: block;
}

#nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px 2px;
    width: 100%;
    min-height: 58px;
    height: auto;
    margin: 0;
    padding: 12px max(24px, calc((100vw - 1180px) / 2 + 24px));
    border-bottom: 1px solid #e4edf2;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 30px rgba(24, 45, 61, .07);
    backdrop-filter: blur(14px);
}

#nav li {
    display: block;
    float: none;
    padding: 0;
    font-size: 14px;
}

#nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    height: auto;
    padding: 9px 12px;
    color: #263a4d;
    font-family: var(--font-sans);
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    white-space: nowrap;
}

#nav li a:hover,
#nav li a:focus {
    color: #fff;
    text-decoration: none;
    background: #1f6f8b;
    box-shadow: 0 8px 18px rgba(31, 111, 139, .22);
}

#content,
#content[style] {
    flex: 1 0 auto;
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    min-height: 0 !important;
    padding: 34px 34px 42px;
}

#bestGraduates {
    height: auto;
    margin: 0 0 24px;
}

#bestGraduates .container,
#news .container {
    width: 100%;
}

#bestGraduates #da-slider,
.da-slider {
    width: 100% !important;
    min-height: 330px;
    border: 1px solid rgba(31, 111, 139, .16);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(31, 111, 139, .12) 0, rgba(240, 193, 90, .18) 100%),
        #f7fbfd;
    box-shadow: 0 18px 42px rgba(20, 42, 60, .12);
    overflow: hidden;
}

.da-slide h2 {
    color: #1f3448;
    font-size: 26px;
    line-height: 1.18;
    text-shadow: none;
}

.da-slide .p2,
.da-slide p {
    color: #405467;
    font-size: 15px;
    line-height: 1.55;
}

.da-slide {
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: center;
    gap: 34px;
    padding: 34px 76px;
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
}

.da-slide-current {
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.da-slider .da-slide:not(.da-slide-current) {
    opacity: 0 !important;
    visibility: hidden !important;
}

.da-slide h2,
.da-slide .p2,
.da-slide p,
.da-slide .da-link,
.da-slide .da-img {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    opacity: 1 !important;
    transform: none !important;
}

.da-slide h2,
.da-slide .p2,
.da-slide p,
.da-slide .da-link {
    grid-column: 1 / 2;
}

.da-slide h2 {
    align-self: end;
    margin: 0 0 6px !important;
}

.da-slide .p2,
.da-slide p {
    align-self: center;
    max-width: 680px;
    margin: 0 !important;
}

.da-slide .da-link {
    align-self: start;
    justify-self: start;
    margin-top: 4px !important;
}

.da-slide .da-img {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    justify-self: center;
}

.da-slide .da-img img {
    width: 160px !important;
    height: 210px !important;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(20, 42, 60, .18) !important;
}

.da-link,
.ca-moreread,
#bookElitePDF {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 12px;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 999px;
    background: #1f6f8b;
    box-shadow: 0 9px 18px rgba(31, 111, 139, .22);
}

.da-link:hover,
.ca-moreread:hover,
#bookElitePDF:hover {
    background: #195a70;
}

#left_adverts,
#right_refers,
#news {
    position: static !important;
    width: auto !important;
    height: auto !important;
    left: auto !important;
    top: auto !important;
}

#content {
    display: grid;
    grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
    grid-template-areas:
        "hero hero"
        "sidebar news";
    gap: 28px;
    align-items: start;
}

#bestGraduates {
    grid-area: hero;
    grid-column: 1 / -1;
}

#news {
    grid-area: news;
    grid-column: auto;
    grid-row: auto;
}

#homeSidebar {
    display: grid;
    grid-area: sidebar;
    grid-column: auto;
    grid-row: auto;
    gap: 22px;
    align-self: start;
}

#content > br {
    display: none;
}

#left_adverts,
#right_refers {
    grid-column: auto;
}

#left_adverts {
    padding: 0;
    border: 1px solid #dde8ee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(20, 42, 60, .08);
    overflow: hidden;
}

#left_adverts a {
    display: block;
}

#left_adverts img {
    display: block;
    width: 100%;
    max-height: 310px;
    object-fit: cover;
    object-position: top center;
}

#main-titles {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 0 0 12px;
    color: #123142;
    border-bottom: 1px solid #dde8ee;
    opacity: 1;
    font-size: 20px;
    font-weight: 800;
}

#news #main-titles {
    justify-content: space-between;
}

#news #main-titles > div {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left !important;
}

#news #main-titles a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-left: auto;
    border: 1px solid #d8e3ea;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(20, 42, 60, .08);
}

#news #main-titles a:hover {
    border-color: #1f6f8b;
    background: #edf7fa;
}

#news #main-titles img {
    width: 16px;
    height: 16px !important;
}

#homeSidebar #main-titles {
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
}

#main-titles:before {
    content: "";
    flex: 0 0 auto;
    width: 9px;
    height: 26px;
    border-radius: 99px;
    background: #bf4f45;
}

#refs {
    display: grid;
    gap: 10px;
    margin-top: 0;
}

#refs a {
    color: #fff;
    text-decoration: none;
}

#refs div {
    width: auto;
    height: auto;
    min-height: 48px;
    margin: 0;
    padding: 13px 16px;
    text-indent: 0;
    border-radius: 10px;
    background-color: #1f6f8b;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1000px rgba(16, 62, 78, .44), 0 10px 22px rgba(20, 42, 60, .08);
    transition: transform .18s ease, box-shadow .18s ease;
}

#refs div:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1000px rgba(16, 62, 78, .24), 0 14px 28px rgba(20, 42, 60, .14);
}

#news {
    padding: 0;
}

.ca-container {
    position: static !important;
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
}

.ca-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
}

.ca-item {
    position: static !important;
    float: none !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    text-align: left;
}

.ca-item-main {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    display: flex;
    flex-direction: column;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    min-height: 255px !important;
    padding: 18px;
    border: 1px solid #dde8ee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(20, 42, 60, .09);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ca-item-main:hover {
    transform: translateY(-3px);
    border-color: #b8d5df;
    box-shadow: 0 18px 38px rgba(20, 42, 60, .14);
}

.ca-icon {
    width: 100% !important;
    height: auto !important;
    margin: 0 0 12px !important;
    border: 0 !important;
    position: static !important;
}

.ca-icon[style*="display: none"] + a .ca-text-title {
    padding-top: 2px !important;
}

.ca-icon img {
    width: 100% !important;
    height: 132px !important;
    object-fit: cover;
    border-radius: 9px;
}

.ca-text-title {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    color: #1f3448;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
}

.ca-text-description {
    margin-top: 8px;
    padding: 0 !important;
    color: #596b7c;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    max-height: 86px;
    overflow: hidden;
}

.ca-moreread {
    position: static !important;
    align-self: flex-start;
    margin-top: auto;
}

#pathToNode {
    margin: 0;
    padding: 20px max(34px, calc((100vw - 1180px) / 2 + 34px));
    color: #fff;
    background:
        linear-gradient(135deg, #123142 0, #1f6f8b 100%);
}

#pathToNode table,
#pathToNode tbody,
#pathToNode tr {
    display: block;
    width: 100%;
}

#pathToNode tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#pathToNode td {
    display: block;
    width: auto;
}

#pathToNode td:first-child {
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
}

#pathToNode td:last-child {
    padding-right: 0 !important;
    color: #fff;
    font-size: 22px !important;
    font-weight: 700;
    text-transform: none !important;
}

#page #workspace {
    flex: 1 0 auto;
    /* margin: 0; */
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 34px 44px;
    min-height: 0;
}

#workspace > table,
#workspace > table > tbody,
#workspace > table > tbody > tr {
    display: block;
    width: 100%;
}

#workspace > table > tbody > tr {
    display: grid;
    grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
    gap: 34px;
}

#workspace > table > tbody > tr > td {
    display: block;
    width: auto;
}

#workspace > table > tbody > tr > td:only-child {
    grid-column: 1 / -1;
}

#subMenu {
    width: auto;
}

#cssmenu,
#subMenu {
    border-radius: 8px;
}

#cssmenu ul {
    margin: 0;
    padding: 8px;
    list-style: none;
    border: 1px solid #e2ebf0;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff 0, #fbfdfe 100%);
    box-shadow: 0 18px 42px rgba(20, 42, 60, .08);
}

#cssmenu li {
    margin: 0;
    list-style: none;
}

#cssmenu a,
#subMenu a {
    display: block;
    padding: 11px 13px;
    color: #365168;
    text-decoration: none;
    border-radius: 10px;
    border-bottom: 1px solid #edf2f5;
    font-size: 14px;
    line-height: 1.35;
}

#cssmenu a:hover,
#subMenu a:hover,
#cssmenu a:focus,
#subMenu a:focus {
    color: #fff;
    background: #1f6f8b;
    border-bottom-color: transparent;
    text-decoration: none;
}

#page #workspace #nodeContent {
    min-width: 0;
    padding-left: 0;
    color: #26313d;
    font-size: 16px;
    background: #fff;
}

#nodeContent {
    max-width: 860px;
    margin: 0 auto;
}

#nodeContent .MsoNormal,
#nodeContent p[style*="MsoNormal"],
#nodeContent p {
    max-width: 760px;
    margin: 0 0 16px !important;
    color: #2a3845;
    font-size: 16px !important;
    line-height: 1.7;
    text-align: left !important;
    text-indent: 0 !important;
}

#nodeContent p:empty,
#nodeContent p:has(> span:empty) {
    display: none;
}

#nodeContent p:has(img) {
    display: inline-block;
    max-width: none;
    margin: 0 16px 22px 0 !important;
    vertical-align: top;
    line-height: 0;
}

#nodeContent p:has(img) + p:has(img) {
    margin-left: 0 !important;
}

#nodeContent p:has(img) img,
#nodeContent > img {
    display: block;
    width: 300px !important;
    height: 230px !important;
    object-fit: cover;
    border: 1px solid #dde8ee;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(20, 42, 60, .1);
}

#nodeContent p:has(img):first-of-type {
    margin-left: calc((100% - 632px) / 2) !important;
}

#nodeContent span {
    font-family: var(--font-sans) !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

#nodeContent p:not(:has(img)) {
    clear: both;
}

#nodeContent p:has(img):first-of-type {
    margin-top: 0 !important;
}

/* "Our Elite" book page: turn legacy Word markup into an editorial layout. */
#nodeContent .node-page-22915 {
    display: grid;
    grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
    column-gap: 48px;
    row-gap: 0;
    max-width: 920px;
    margin: 0 auto;
    align-items: start;
}

#nodeContent .node-page-22915 > p {
    max-width: none;
}

#nodeContent .node-page-22915 > p:has(img) {
    grid-column: 1;
    display: block;
    width: 100%;
    margin: 0 0 18px !important;
    padding: 10px;
    border: 1px solid #dce8ee;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(20, 42, 60, .09);
}

#nodeContent .node-page-22915 > p:has(img):first-of-type {
    margin-left: 0 !important;
}

#nodeContent .node-page-22915 > p:has(img) img {
    width: 100% !important;
    height: auto !important;
    max-height: 330px;
    object-fit: contain;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    background: #f5f9fb;
}

#nodeContent .node-page-22915 > p:has(img) img + img {
    margin-top: 12px;
}

#nodeContent .node-page-22915 > p:not(:has(img)) {
    grid-column: 2;
    clear: none;
    margin-bottom: 22px !important;
    color: #344b5e;
    font-size: 16px !important;
    line-height: 1.78;
}

#nodeContent .node-page-22915 > p:not(:has(img)):first-of-type {
    display: none;
}

#nodeContent .node-page-22915 > p:not(:has(img)) + p:not(:has(img)) {
    padding-top: 20px;
    border-top: 1px solid #e5edf1;
}

#nodeContent .node-page-22915:before {
    content: "";
    grid-column: 2;
    grid-row: 1;
    display: block;
    width: 52px;
    height: 4px;
    margin: 6px 0 22px;
    border-radius: 999px;
    background: #f3b63f;
}

#nodeContent .node-page-22915 > p:nth-of-type(3) {
    grid-row: 1 / span 2;
    padding-top: 28px;
}

#nodeContent h1,
#nodeContent h2,
#nodeContent h3,
.sitemap_page h1,
.sitemap_page h2,
.sitemap_page h3 {
    color: #1f3448;
    line-height: 1.25;
}

#nodeContent h1,
.sitemap_page h1 {
    margin-top: 0;
    font-size: 30px;
}

#nodeContent h2,
.sitemap_page h2 {
    margin-top: 28px;
    font-size: 23px;
}

#nodeContent p,
.sitemap_page p {
    margin: 0 0 1em;
}

#nodeContent table,
.sitemap_page table {
    max-width: 100%;
    border-collapse: collapse;
}

#nodeContent td,
#nodeContent th,
.sitemap_page td,
.sitemap_page th {
    vertical-align: top;
}

#nodeContent img,
.sitemap_page img {
    max-width: 100%;
    height: auto !important;
}

.sitemap_page {
    padding: 34px 34px 44px;
}

#content > .sitemap_page {
    grid-column: 1 / -1;
}

.sitemap-title {
    margin-bottom: 18px;
    color: #1f3448;
    font-size: 26px;
}

.sitemap_page ul {
    margin-left: 24px;
}

.sitemap_page li {
    margin: 6px 0;
}

#footer {
    flex: 0 0 auto;
    height: auto;
    margin-top: auto;
    padding: 22px 34px;
    color: rgba(234, 242, 246, .86);
    text-align: center;
    border-top: 0;
    background: #123142;
}

#footer div {
    margin: 3px 0;
}

#main,
#main[style],
#bottom,
#bottom[style] {
    width: auto !important;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

#main {
    background: #fff;
}

#center .content,
#left .content,
#right .content {
    max-width: 100%;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

#nodeContent a,
.sitemap_page a {
    text-decoration: none;
}

#nodeContent a:hover,
#nodeContent a:focus,
.sitemap_page a:hover,
.sitemap_page a:focus {
    text-decoration: underline;
}

#nodeContent .faculty-document {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 26px;
    width: min(100%, 720px);
    margin: 8px auto;
    padding: 28px;
    border: 1px solid #dbe7ed;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(20, 42, 60, .1);
}

#nodeContent .faculty-document-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 118px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .04em;
    border-radius: 8px;
    background: #c84d46;
    box-shadow: 0 10px 24px rgba(160, 49, 43, .2);
}

#nodeContent .faculty-document-label {
    margin-bottom: 7px;
    color: #627687;
    font-size: 13px;
    font-weight: 600;
}

#nodeContent .faculty-document h2 {
    margin: 0 0 20px;
    color: #19384c;
    font-size: 22px;
    line-height: 1.3;
}

#nodeContent .faculty-document-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    background: #1f6f8b;
    box-shadow: 0 9px 20px rgba(31, 111, 139, .2);
    transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

#nodeContent .faculty-document-download:hover,
#nodeContent .faculty-document-download:focus {
    color: #fff;
    text-decoration: none;
    background: #195a70;
    box-shadow: 0 12px 25px rgba(31, 111, 139, .27);
    transform: translateY(-1px);
}

#nodeContent > #pathToNode,
.sitemap_page #pathToNode {
    margin: 0 0 24px;
    padding: 14px 16px;
    color: #405467;
    border: 1px solid #dde8ee;
    border-radius: 12px;
    background: #f8fbfd;
}

#nodeContent > #pathToNode td,
.sitemap_page #pathToNode td {
    color: #405467;
}

#nodeContent > #pathToNode td:last-child,
.sitemap_page #pathToNode td:last-child {
    color: #1f3448;
}

#nodeContent ul,
#nodeContent ol,
.sitemap_page ul,
.sitemap_page ol {
    padding-left: 22px;
}

#nodeContent li,
.sitemap_page li {
    margin: 6px 0;
}

#nodeContent blockquote,
.sitemap_page blockquote {
    margin: 18px 0;
    padding: 12px 18px;
    color: #405467;
    border-left: 4px solid #1f6f8b;
    background: #f8fbfd;
}

#nodeContent > p,
.sitemap_page > p,
#nodeContent .short_news_body p {
    max-width: 760px;
}

#nodeContent .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

#nodeContent .panel {
    margin-bottom: 22px;
    border: 1px solid #dde8ee;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(20, 42, 60, .1);
    overflow: hidden;
}

#nodeContent .panel-heading {
    padding: 15px 18px;
    color: #1f3448;
    border-bottom: 1px solid #dde8ee;
    background: #f8fbfd;
}

#nodeContent .panel-primary > .panel-heading,
#nodeContent .panel-success > .panel-heading {
    color: #fff;
    border-color: #1f6f8b;
    background: linear-gradient(135deg, #123142 0, #1f6f8b 100%);
}

#nodeContent .panel-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

#nodeContent .panel-body {
    padding: 18px;
}

#nodeContent .row {
    margin-left: -8px;
    margin-right: -8px;
}

#nodeContent [class*="col-"] {
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
}

#nodeContent label {
    display: block;
    width: auto;
    margin: 0 0 6px;
    color: #405467;
    font-weight: 700;
}

#nodeContent .form-control,
#nodeContent input[type="text"],
#nodeContent input[type="email"],
#nodeContent input[type="password"],
#nodeContent select,
#nodeContent textarea {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    color: #1f2e3d;
    border: 1px solid #cfdde5;
    border-radius: 9px;
    background: #fff;
    box-shadow: none;
}

#nodeContent .form-control:focus,
#nodeContent input[type="text"]:focus,
#nodeContent input[type="email"]:focus,
#nodeContent input[type="password"]:focus,
#nodeContent select:focus,
#nodeContent textarea:focus {
    border-color: #1f6f8b;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(31, 111, 139, .14);
}

#nodeContent .btn,
#nodeContent input[type="submit"],
#nodeContent input[type="button"],
#nodeContent button {
    min-height: 38px;
    padding: 8px 14px;
    color: #fff;
    border: 1px solid #1f6f8b;
    border-radius: 999px;
    background: #1f6f8b;
    box-shadow: 0 9px 18px rgba(31, 111, 139, .18);
    cursor: pointer;
}

#nodeContent .btn:hover,
#nodeContent input[type="submit"]:hover,
#nodeContent input[type="button"]:hover,
#nodeContent button:hover {
    border-color: #195a70;
    background: #195a70;
}

#nodeContent .alert {
    padding: 12px 14px;
    border: 1px solid #ead59c;
    border-radius: 8px;
    color: #6a4b0e;
    background: #fff8df;
}

#nodeContent .table,
#nodeContent table.table {
    width: 100%;
    border: 1px solid #dde8ee;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

#nodeContent .table th,
#nodeContent .table td {
    padding: 10px 12px;
    border-color: #e5edf2;
}

#nodeContent .table th {
    color: #1f3448;
    background: #f8fbfd;
}

#nodeContent .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding-left: 0;
    list-style: none;
}

#nodeContent .pagination li {
    margin: 0;
}

#nodeContent .pagination a,
.pageLinks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 34px;
    padding: 6px 10px;
    color: #1f6f8b;
    text-decoration: none;
    border: 1px solid #cfdde5;
    border-radius: 999px;
    background: #fff;
}

#nodeContent .pagination .active a,
#nodeContent .pagination a:hover,
.pageLinks a:hover {
    color: #fff;
    border-color: #1f6f8b;
    background: #1f6f8b;
    text-decoration: none;
}

#nodeContent .container > .panel-primary:first-child {
    max-width: 820px;
    margin: 4px auto 22px;
    border-radius: 12px;
    background: #fff;
}

#nodeContent .container > .panel-primary:first-child > .panel-heading {
    padding: 16px 20px;
}

#nodeContent .container > .panel-primary:first-child .panel-title {
    color: #fff;
    font-size: 17px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#nodeContent .container > .panel-primary:first-child .panel-body {
    padding: 18px 20px 20px;
}

#nodeContent #search_frm {
    float: none;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

#nodeContent #search_frm .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin: 0;
}

#nodeContent #search_frm .row > input[type="hidden"] {
    display: none;
}

#nodeContent #search_frm .row > [class*="col-"] {
    float: none;
    width: auto;
    padding: 0;
}

#nodeContent #search_frm label {
    float: none;
    width: auto;
    min-height: 0;
    padding: 0;
    margin-bottom: 6px;
    color: #2a455e;
    font-size: 15px;
    line-height: 1.25;
}

#nodeContent #search_frm .form-control,
#nodeContent #search_frm input[type="text"],
#nodeContent #search_frm select {
    height: 38px;
}

#nodeContent #search_frm > .col-xs-10 {
    float: none;
    width: 100%;
    max-width: none;
    margin: 22px auto 0;
    padding: 0;
}

#nodeContent #search_frm_btn {
    height: 40px;
    font-weight: 700;
}

#nodeContent .grad-register-form {
    float: none;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

#nodeContent .grad-register-form > .col-xs-10 {
    float: none;
    width: 100%;
    padding: 0;
}

#nodeContent .grad-register-form input[type="button"] {
    height: 40px;
    font-weight: 700;
}

#nodeContent .grad-register-form-empty {
    max-width: 600px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e4edf2;
    text-align: center;
}

#nodeContent .grad-register-form-empty input[type="button"] {
    width: auto;
    min-width: 210px;
    padding-left: 24px;
    padding-right: 24px;
    color: #1f6f8b;
    border-color: #b9d7e2;
    background: #f8fcfd;
    box-shadow: none;
}

#nodeContent .grad-register-form-empty input[type="button"]:hover,
#nodeContent .grad-register-form-empty input[type="button"]:focus {
    color: #fff;
    border-color: #1f6f8b;
    background: #1f6f8b;
    box-shadow: 0 10px 22px rgba(31, 111, 139, .18);
}

#nodeContent .grad-register-form-results {
    margin-top: 14px;
}

#nodeContent .grad-search-page {
    width: min(100%, 1120px);
    margin: 40px auto 70px;
    padding: 0 18px;
}

#nodeContent .grad-search-card,
#nodeContent .grad-results-card {
    border: 1px solid #d7e7ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 46px rgba(18, 49, 66, .08);
    overflow: hidden;
}

#nodeContent .grad-search-card {
    max-width: 900px;
    margin: 0 auto 28px;
}

#nodeContent .grad-search-card > .panel-heading {
    padding: 18px 24px;
    border: 0;
    background: linear-gradient(135deg, #123142 0, #1f718c 100%);
}

#nodeContent .grad-search-card .panel-title,
#nodeContent .grad-results-header .panel-title {
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#nodeContent .grad-search-card .panel-body {
    padding: 28px 30px 30px;
}

#nodeContent .grad-search-form {
    float: none;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
}

#nodeContent .grad-search-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

#nodeContent .grad-search-field label {
    display: block;
    float: none;
    width: auto;
    min-height: 0;
    padding: 0;
    margin: 0 0 7px;
    color: #18354b;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

#nodeContent .grad-search-field .form-control,
#nodeContent .grad-search-field input[type="text"],
#nodeContent .grad-search-field select {
    width: 100%;
    height: 44px;
    padding: 9px 12px;
    color: #123142;
    border: 1px solid #c5d9e4;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

#nodeContent .grad-search-field .form-control:focus,
#nodeContent .grad-search-field input[type="text"]:focus,
#nodeContent .grad-search-field select:focus {
    border-color: #1f7893;
    box-shadow: 0 0 0 3px rgba(31, 120, 147, .14);
    outline: 0;
}

#nodeContent .grad-search-actions {
    margin-top: 30px;
    padding-top: 8px;
}

#nodeContent #search_frm_btn,
#nodeContent .grad-register-form input[type="button"] {
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: #1f7893;
    box-shadow: 0 14px 26px rgba(31, 120, 147, .2);
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

#nodeContent #search_frm_btn:hover,
#nodeContent #search_frm_btn:focus,
#nodeContent .grad-register-form input[type="button"]:hover,
#nodeContent .grad-register-form input[type="button"]:focus {
    color: #fff;
    background: #17657c;
    box-shadow: 0 18px 32px rgba(31, 120, 147, .26);
    transform: translateY(-1px);
}

#nodeContent .grad-search-page .alert-warning {
    margin: 0 auto 24px;
    padding: 14px 16px;
    color: #7a4b00;
    border: 1px solid #efd085;
    border-radius: 8px;
    background: #fff7dc;
}

#nodeContent .grad-results-card {
    max-width: 980px;
    margin: 0 auto;
}

#nodeContent .grad-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 22px;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #123142 0, #1f718c 100%);
}

#nodeContent .grad-results-header .panel-title {
    margin: 0;
    font-size: 17px;
}

#nodeContent .grad-results-count {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    color: #e9f7fb;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

#nodeContent .grad-results-table-wrap {
    width: 100%;
    overflow-x: auto;
}

#nodeContent .grad-results-table {
    width: 100%;
    min-width: 760px;
    margin: 0;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0;
    background: #fff;
}

#nodeContent .grad-results-table th,
#nodeContent .grad-results-table td {
    padding: 15px 16px;
    color: #18354b;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #e4edf2;
    font-size: 14px;
    line-height: 1.45;
    vertical-align: top;
}

#nodeContent .grad-results-table th {
    color: #1f7893;
    background: #f5fafc;
    font-weight: 800;
    white-space: nowrap;
}

#nodeContent .grad-results-table th:first-child,
#nodeContent .grad-results-table td:first-child {
    width: 56px;
    text-align: center;
}

#nodeContent .grad-results-table tr:last-child td {
    border-bottom: 0;
}

#nodeContent .grad-results-table tr:hover td {
    background: #f8fcfd;
}

#nodeContent .grad-results-table a.orderBy {
    color: #1f7893;
    font-weight: 800;
    text-decoration: none;
}

#nodeContent .grad-results-table a.orderBy:hover,
#nodeContent .grad-results-table a.orderBy:focus {
    color: #123142;
    text-decoration: underline;
}

#nodeContent .grad-name {
    color: #102b3b;
    font-weight: 800;
}

#nodeContent .grad-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 4px 10px;
    color: #17657c;
    border-radius: 999px;
    background: #eaf5f8;
    font-weight: 800;
}

#nodeContent .grad-register-form-results {
    max-width: 320px;
    margin: 24px auto 0;
}

#nodeContent .grad-register-action {
    width: 100%;
}

#nodeContent .grad-register-form-results input[type="button"] {
    color: #1f7893;
    border: 1px solid #b9d7e2;
    background: #f8fcfd;
    box-shadow: none;
}

#nodeContent .grad-register-form-results input[type="button"]:hover,
#nodeContent .grad-register-form-results input[type="button"]:focus {
    color: #fff;
    border-color: #1f7893;
    background: #1f7893;
}

#nodeContent .grad-pagination {
    float: none;
    width: 100%;
    margin-top: 24px;
    padding: 0;
}

#nodeContent .grad-pagination .pagination {
    margin: 0;
}

.news > table {
    display: block;
    width: 100% !important;
    border-spacing: 0 !important;
}

.news > table > tbody,
.news > table > tbody > tr {
    display: block;
    width: 100%;
}

.news > table > tbody > tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 22px;
}

.news > table > tbody > tr > td {
    display: block;
    width: auto !important;
    padding: 0 !important;
    border: 1px solid #dde8ee !important;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(20, 42, 60, .1) !important;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.news > table > tbody > tr > td:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(20, 42, 60, .15) !important;
}

.news > table table,
.short_news table {
    width: 100% !important;
    border-spacing: 0 !important;
}

.news > table table td {
    padding: 12px;
}

.news_image {
    width: 180px;
    height: 120px !important;
    object-fit: cover;
    border-radius: 9px;
}

.news_date,
.short_news_date {
    padding: 10px 12px;
    color: #697989;
    font-size: 13px;
    border-bottom: 1px solid #e5edf2;
    background: #f8fbfd;
}

.news h3,
.short_news h3 {
    margin: 0 0 8px;
    color: #1f3448;
    font-size: 18px;
    line-height: 1.3;
}

.news_preview,
.short_news_preview {
    color: #596b7c;
    line-height: 1.55;
}

.all-news-top {
    display: none;
}

.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 22px;
}

.news-pagination-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #1f6f8b;
    font-size: 25px;
    line-height: 1;
    text-decoration: none;
    border: 1px solid #d5e5ec;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 7px 18px rgba(20, 42, 60, .08);
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.news-pagination-arrow:hover,
.news-pagination-arrow:focus {
    color: #fff;
    text-decoration: none;
    border-color: #1f6f8b;
    background: #1f6f8b;
    transform: translateY(-1px);
}

.news-pagination-status {
    min-width: 62px;
    color: #52697a;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

#nodeContent .all-news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

#nodeContent:has(.all-news-list) {
    max-width: none;
}

#nodeContent .all-news-card {
    display: grid;
    grid-template-columns: minmax(142px, 38%) minmax(0, 1fr);
    grid-template-rows: 172px 210px;
    grid-template-areas:
        "media head"
        "preview preview";
    min-height: 382px;
    border: 1px solid #dce8ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(20, 42, 60, .08);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

#nodeContent .all-news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 111, 139, .28);
    box-shadow: 0 22px 48px rgba(20, 42, 60, .15);
}

#nodeContent .all-news-media {
    grid-area: media;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 16px;
    border-right: 1px solid #e3edf2;
    border-bottom: 1px solid #e3edf2;
    background: #fff;
    overflow: hidden;
}

#nodeContent .all-news-media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-height: 140px;
    object-fit: contain;
    color: transparent;
    font-size: 0;
    transition: transform .25s ease;
}

#nodeContent .all-news-media-fallback {
    position: absolute;
    inset: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1f6f8b;
    border: 1px solid #d7e8ef;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, 0)),
        #eef7fa;
}

#nodeContent .all-news-media-fallback strong {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

#nodeContent .all-news-media-fallback span {
    margin-top: 5px;
    color: #667d8d;
    font-size: 12px;
    font-weight: 700;
}

#nodeContent .all-news-media {
    position: relative;
}

#nodeContent .all-news-card:hover .all-news-media img {
    transform: scale(1.035);
}

#nodeContent .all-news-body {
    display: contents;
}

#nodeContent .all-news-head {
    grid-area: head;
    min-width: 0;
    padding: 17px 18px 14px;
    border-bottom: 1px solid #e3edf2;
    background: #fff;
}

#nodeContent .all-news-date {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 12px;
    padding: 4px 9px;
    color: #557083;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 999px;
    background: #edf6f9;
}

#nodeContent .all-news-title {
    display: block;
    margin-bottom: 0;
    color: #16364b;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.28;
    text-decoration: none;
    max-height: 98px;
    overflow: hidden;
}

#nodeContent .all-news-title:hover,
#nodeContent .all-news-title:focus {
    color: #1f6f8b;
    text-decoration: none;
}

#nodeContent .all-news-preview {
    grid-area: preview;
    padding: 16px 18px 18px;
    color: #4e6172;
    font-size: 14px;
    line-height: 1.58;
    max-height: 210px;
    overflow: hidden;
    background: #fff;
}

#nodeContent .all-news-preview p,
#nodeContent .all-news-preview div {
    margin: 0;
}

#nodeContent .all-news-preview h1,
#nodeContent .all-news-preview h2,
#nodeContent .all-news-preview h3,
#nodeContent .all-news-preview h4,
#nodeContent .all-news-preview h5,
#nodeContent .all-news-preview h6 {
    margin: 0 0 8px;
    color: #16364b;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

#nodeContent .all-news-preview table,
#nodeContent .all-news-preview tbody,
#nodeContent .all-news-preview tr,
#nodeContent .all-news-preview td {
    display: block;
    width: 100% !important;
    max-width: 100%;
    padding: 0 !important;
    border: 0 !important;
}

#nodeContent .all-news-preview img {
    display: none;
}

#nodeContent .all-news-card-text {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(128px, auto);
    grid-template-areas:
        "head"
        "preview";
    min-height: 230px;
    border-top: 4px solid #1f6f8b;
}

#nodeContent .all-news-card-text .all-news-head {
    padding-top: 18px;
}

#nodeContent .all-news-card-no-preview {
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: minmax(184px, auto);
    grid-template-areas: "media head";
    min-height: 184px;
    border-top: 4px solid #1f6f8b;
}

#nodeContent .all-news-card-no-preview .all-news-media,
#nodeContent .all-news-card-no-preview .all-news-head {
    border-bottom: 0;
}

#nodeContent .all-news-card-no-preview .all-news-media {
    padding: 14px;
    border-right-color: #e0ebf0;
    background: #f8fbfc;
}

#nodeContent .all-news-card-no-preview .all-news-media-fallback {
    inset: 14px;
}

#nodeContent .all-news-card-no-preview .all-news-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 22px 24px;
}

#nodeContent .all-news-card-no-preview .all-news-date {
    margin-bottom: 10px;
}

#nodeContent .all-news-card-no-preview .all-news-title {
    max-height: none;
    font-size: 16px;
    line-height: 1.35;
    overflow: visible;
}

#nodeContent .all-news-compact-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-top: 18px;
    padding: 7px 13px;
    color: #1f6f8b;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #cfe1e8;
    border-radius: 7px;
    background: #f5fafc;
    transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

#nodeContent .all-news-compact-link:after {
    content: "\2192";
    margin-left: 8px;
    font-size: 16px;
    line-height: 1;
    transition: transform .18s ease;
}

#nodeContent .all-news-compact-link:hover,
#nodeContent .all-news-compact-link:focus {
    color: #fff;
    text-decoration: none;
    border-color: #1f6f8b;
    background: #1f6f8b;
}

#nodeContent .all-news-compact-link:hover:after,
#nodeContent .all-news-compact-link:focus:after {
    transform: translateX(3px);
}

#nodeContent .all-news-card-no-preview.all-news-card-text {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "head";
    min-height: 184px;
}

#nodeContent .all-news-card-no-preview.all-news-card-text .all-news-head {
    min-height: 180px;
}

.short_news {
    border: 1px solid #dde8ee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(20, 42, 60, .1);
    overflow: hidden;
}

.short_news table,
.short_news tbody,
.short_news tr,
.short_news td {
    display: block;
    width: 100%;
}

.short_news td {
    padding: 16px !important;
}

.short_news img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 8px;
}

.short_news_body {
    color: #26313d;
    line-height: 1.65;
}

#nodeContent > a:first-child img[src*="back.png"] {
    width: 28px;
    height: 28px !important;
    margin-bottom: 14px;
    padding: 6px;
    border-radius: 6px;
    background: #edf7fa;
}

@media (max-width: 900px) {
    #page {
        margin: 0;
        border-radius: 0;
    }

    #header {
        padding: 20px;
    }

    #header tr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #header td:first-child,
    #header td:last-child,
    #header td:nth-child(2) {
        flex: none;
        text-align: left;
    }

    #header #header_sitemap,
    #header form {
        justify-content: flex-start;
        text-align: left;
    }

    .site-title {
        font-size: 23px;
        white-space: normal;
    }

    #content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "hero"
            "news"
            "sidebar";
        padding: 26px 20px 34px;
    }

    #bestGraduates,
    #news,
    #homeSidebar,
    #left_adverts,
    #right_refers {
        grid-column: auto;
        grid-row: auto;
    }

    .da-slide {
        grid-template-columns: minmax(0, 1fr) 150px;
        gap: 22px;
        padding: 28px 34px;
    }

    .da-slide .da-img img {
        width: 140px !important;
        height: 180px !important;
    }

    .ca-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #left_adverts img {
        max-height: 260px;
    }

    #workspace > table > tbody > tr {
        grid-template-columns: 1fr;
    }

    #pathToNode {
        padding: 16px 20px;
    }

    #pathToNode tr {
        display: block;
    }

    #page #workspace,
    .sitemap_page {
        padding: 26px 20px 34px;
    }

    #nodeContent .all-news-list {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    #nodeContent .node-page-22915 {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
        column-gap: 30px;
    }
}

@media (max-width: 560px) {
    #page {
        margin: 0;
        border-width: 0;
        border-radius: 0;
        box-shadow: none;
    }

    #header {
        padding: 18px 14px;
    }

    #header #header_langs {
        gap: 6px;
    }

    #header #header_langs a {
        min-height: 28px;
        padding: 4px 8px;
    }

    .site-title {
        padding-left: 14px;
        font-size: 22px;
        white-space: normal;
    }

    .site-title:before {
        width: 4px;
    }

    #nav {
        top: 0;
        justify-content: flex-start;
        padding: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        box-shadow: 0 8px 18px rgba(24, 45, 61, .08);
    }

    #nav li {
        flex: 0 0 auto;
    }

    #nav li a {
        min-height: 36px;
        padding: 8px 10px;
        white-space: nowrap;
    }

    #content {
        padding: 22px 14px 30px;
    }

    #bestGraduates #da-slider,
    .da-slider {
        min-height: 380px;
        border-radius: 10px;
    }

    .da-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 12px;
        padding: 24px 18px 52px;
        text-align: left;
    }

    .da-slide h2,
    .da-slide .p2,
    .da-slide p,
    .da-slide .da-link,
    .da-slide .da-img {
        grid-column: 1 / -1;
    }

    .da-slide .da-img {
        grid-row: auto;
        justify-self: start;
    }

    .da-slide .da-img img {
        width: 96px !important;
        height: 124px !important;
    }

    .da-slide h2 {
        font-size: 21px;
    }

    .ca-wrapper {
        grid-template-columns: 1fr;
    }

    #left_adverts img {
        max-height: 220px;
    }

    #pathToNode,
    #page #workspace,
    .sitemap_page,
    #footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    #pathToNode td:last-child {
        margin-top: 8px;
        font-size: 19px !important;
    }

    #nodeContent table,
    .sitemap_page table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

    #nodeContent .row {
        margin-left: 0;
        margin-right: 0;
    }

    #nodeContent .all-news-list {
        gap: 16px;
    }

    #nodeContent .node-page-22915 {
        display: block;
    }

    #nodeContent .node-page-22915:before {
        display: none;
    }

    #nodeContent .node-page-22915 > p:has(img) {
        width: min(100%, 340px);
        margin: 0 auto 16px !important;
    }

    #nodeContent .node-page-22915 > p:not(:has(img)) {
        margin-top: 26px !important;
        font-size: 15px !important;
        line-height: 1.7;
    }

    #nodeContent .node-page-22915 > p:not(:has(img)) + p:not(:has(img)) {
        margin-top: 0 !important;
    }

    #nodeContent .all-news-card {
        grid-template-columns: 1fr;
        grid-template-rows: 190px auto minmax(110px, auto);
        grid-template-areas:
            "media"
            "head"
            "preview";
        min-height: 0;
        border-radius: 10px;
    }

    #nodeContent .all-news-media {
        min-height: 0;
        height: 190px;
        border-right: 0;
        border-bottom: 1px solid #e3edf2;
    }

    #nodeContent .all-news-head {
        padding: 14px 14px 12px;
    }

    #nodeContent .all-news-title {
        font-size: 16px;
    }

    #nodeContent .all-news-preview {
        padding: 13px 14px 15px;
        max-height: 136px;
    }

    #nodeContent .all-news-card-text {
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(110px, auto);
        grid-template-areas:
            "head"
            "preview";
    }

    #nodeContent .all-news-card-no-preview {
        grid-template-columns: 104px minmax(0, 1fr);
        grid-template-rows: minmax(170px, auto);
        grid-template-areas: "media head";
        min-height: 170px;
    }

    #nodeContent .all-news-card-no-preview .all-news-media {
        height: auto;
        padding: 10px;
        border-right: 1px solid #e3edf2;
        border-bottom: 0;
    }

    #nodeContent .all-news-card-no-preview .all-news-media-fallback {
        inset: 10px;
    }

    #nodeContent .all-news-card-no-preview .all-news-media-fallback strong {
        font-size: 30px;
    }

    #nodeContent .all-news-card-no-preview .all-news-head {
        padding: 18px 16px;
    }

    #nodeContent .all-news-card-no-preview .all-news-title {
        max-height: none;
        font-size: 15px;
        overflow: visible;
    }

    #nodeContent .all-news-card-no-preview.all-news-card-text {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "head";
    }

    #nodeContent .all-news-compact-link {
        margin-top: 14px;
    }

    #nodeContent #search_frm .row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    #nodeContent .grad-search-page {
        margin: 24px auto 48px;
        padding: 0 14px;
    }

    #nodeContent .grad-search-card .panel-body {
        padding: 20px 16px 22px;
    }

    #nodeContent .grad-search-fields {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #nodeContent .grad-results-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    #nodeContent .grad-results-table th,
    #nodeContent .grad-results-table td {
        padding: 13px 12px;
    }

    #nodeContent .grad-register-form-results {
        max-width: none;
    }

    #nodeContent .container > .panel-primary:first-child .panel-body {
        padding: 16px 14px;
    }

    #nodeContent [class*="col-"] {
        float: none;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    #nodeContent .faculty-document {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 18px;
        text-align: center;
    }

    #nodeContent .faculty-document-icon {
        width: 76px;
        height: 92px;
        margin: 0 auto;
        font-size: 17px;
    }

    #nodeContent .faculty-document h2 {
        margin-bottom: 18px;
        font-size: 19px;
    }

    #nodeContent .faculty-document-download {
        width: 100%;
    }

    .news > table > tbody > tr {
        grid-template-columns: 1fr;
    }

    .news > table table,
    .news > table table tbody,
    .news > table table tr,
    .news > table table td {
        display: block;
        width: 100%;
    }

    .news_image {
        width: 100%;
        height: 170px !important;
    }
}
