/* Sections */
.section {
    margin-bottom: 25px;
}

.section-header {
    background: #E8E8E8;
    padding: 10px 15px;
    border: 1px solid #CCCCCC;
    border-bottom: none;
    font-weight: bold;
    font-size: 16px;
}

.section-body {
    border: 1px solid #CCCCCC;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* About */
.about-text {
    color: #333333;
    line-height: 1.7;
}

/* Contact Links */
.contact-links {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E8E8E8;
}

.contact-link {
    display: inline-block;
    color: #0066CC;
    text-decoration: none;
    margin-right: 20px;
    font-size: 13px;
}

.contact-link:hover {
    color: #0052A3;
    text-decoration: underline;
}

.contact-link-label {
    font-weight: bold;
    color: #333333;
    margin-right: 4px;
}

/* Project Cards */
.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.project-card {
    border: 1px solid #CCCCCC;
    padding: 15px;
    background: #FFFFFF;
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card:hover {
    background: #F5F5F5;
    border-color: #999999;
}

.project-title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 6px;
}

.project-description {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.project-tag {
    display: inline-block;
    background: #E8E8E8;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    padding: 2px 8px;
    font-size: 11px;
    color: #666666;
    margin-right: 5px;
}

.project-card-empty {
    border: 1px dashed #CCCCCC;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.project-empty-text {
    font-size: 13px;
    color: #999999;
}

/* Responsive */
@media (max-width: 600px) {
    .content-wrapper {
        padding: 10px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .contact-link {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
}