/* University Page Styles */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
    padding-left: 40px;
    font-family: 'Roboto', sans-serif;
}

.main-title {
    font-size: 4.5rem;
    color: #444444;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.1;
    font-family: 'Roboto', sans-serif;
}

.main-title #dynamic-word {
    color: #81a6f0;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
    font-size: inherit !important;
}

/* Introduction Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin-bottom: 24px;
}

.intro-text {
    color: #666666;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
    display: inline;
}

.label {
    color: #666666;
    font-weight: 600;
    margin-right: 4px;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    margin-top: -8px;
}

.year-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.year {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #444444;
    width: fit-content;
    font-weight: 500;
}

.year-block:nth-child(1) .year {
    background-color: #f6f4b4;
}

.year-block:nth-child(2) .year {
    background-color: #f6f4b4;
}

.year-block:nth-child(3) .year {
    background-color: #f2d581;
}

.job {
    margin-bottom: 12px;
    position: relative;
}

.job:last-child {
    margin-bottom: 0;
}

.job h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444444;
    margin-bottom: 4px;
    padding-right: 120px;
}

.period {
    color: #444;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 2px;
}

.job p {
    color: #666666;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
    max-width: 650px;
    font-weight: 400;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    color: #444444;
    font-weight: 600;
    margin: 60px 0 30px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.project h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #444444;
    margin-bottom: 8px;
}

.project p {
    color: #5f5f5f;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.tech-stack {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    background: #f0f0f0;
    color: #444444;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .content {
        padding: 60px 24px 40px;
    }

    .main-title {
        font-size: 3rem;
        margin-bottom: 30px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .job p {
        max-width: 100%;
    }

    .job h3 {
        padding-right: 0;
        margin-bottom: 2px;
    }

    .period {
        position: static;
        display: block;
        margin-bottom: 6px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
} 