﻿:root {
    --accent: #760e26;
    --bg-light: #fff;
    --text-main: #1a1a1a;
    --muted: #777;
    --radius: 14px;
    --gap: 22px;
    --shadow: 0 6px 18px rgba(0,0,0,0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html, body {
    height: 100%;
    margin: 0;
}



body {
    font-family: LIK-Regular, sans-serif;
    background-color: rgb(184, 163, 171, 0.4);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 10px 0 10px;
}

@font-face {
    font-family: 'LIK-Regular';
    src: url('/lib/fonts/LIK-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.no-bootstrap * {
    all: revert;
}

.main-container {
    width: auto;
    flex: 1;
}

.wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 32px 16px;
}

h1 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 50px;
}

h2 {
    color: var(--primary);
    margin-bottom: 12px;
}

h5.modal-title {
    color: var(--primary);
    font-weight: bold;
}

.section {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    background: #fff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

/*#international-students,
#mobilities {
    display: block;
    width: 100%;
    padding: 20px;
}*/


.icon {
    width: 1.5em;
    height: 1.5em;
    fill: currentColor; /* makes it inherit text color */
    vertical-align: -0.125em;
}


@media(max-width:900px) {
    .section {
        grid-template-columns: 1fr;
    }
}

.section img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.call-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

    .call-list li {
        background: #fff;
        padding: 16px 20px;
        margin-bottom: 12px;
        border-radius: 12px;
        box-shadow: var(--shadow);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        transition: transform 0.2s, box-shadow 0.2s;
    }

        .call-list li:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(0,0,0,0.1);
        }


    .call-list a {
        color: var(--primary);
        text-decoration: none;
        flex: 1;
        min-width: 200px;
    }

        .call-list a:hover {
            text-decoration: underline;
        }

    .call-list button {
        margin-left: 8px;
        margin-top: 4px;
        font-size: 0.9rem;
    }

.national-wrap table {
    width: 100%;
    table-layout: auto;
}

.national-wrap th,
.national-wrap td {
    padding: 16px 20px;
    white-space: normal;
}

    .national-wrap th:nth-child(2),
    .national-wrap td:nth-child(2) {
        width: 25%;
    }

    .national-wrap th:nth-child(3),
    .national-wrap td:nth-child(3) {
        width: 15%;
    }

    .national-wrap th:nth-child(4),
    .national-wrap td:nth-child(4) {
        width: 15%;
    }

    .national-wrap th:nth-child(5),
    .national-wrap td:nth-child(5) {
        width: 10%;
    }

    .national-wrap th:nth-child(6),
    .national-wrap td:nth-child(6) {
        width: 15%;
    }

    .national-wrap th:nth-child(7),
    .national-wrap td:nth-child(7) {
        width: 10%;
    }

.btn-primary {
    margin-right: 18px;
}

:focus-visible {
    outline: 3px solid rgba(var(--primary-rgb),0.25);
    outline-offset: 2px;
}