.projects-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

/* Project Detail Page */
.project-article {
    padding: 20px;
    background-color: var(--highlight-color);
    color: var(--button-text-color);
    border: 2px solid var(--black-solid);
    box-shadow: 8px 8px 0 0 var(--black-solid);
    margin-bottom: 30px;
}

.project-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.project-title-url {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-image-detail {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.article-url {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.article-url a {
    color: inherit;
    text-decoration: none;
}

.article-url a:hover {
    text-decoration: underline;
}

.article-content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.article-content h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content ul {
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 8px;
}

.back-to-projects {
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
}

.project-card {
    width: 100%;
}

.project-entry {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 20px;
    background-color: var(--highlight-color);
    color: var(--button-text-color);
    border: 2px solid var(--black-solid);
    box-shadow: 8px 8px 0 0 var(--black-solid);
    cursor: pointer;
    height: 100%;
    justify-content: space-between;
}

.project-entry:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0 0 var(--black-solid);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.project-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.project-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-left: 15px;
}

.project-url {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 12px;
}

.project-url a {
    color: inherit;
    text-decoration: none;
}

.project-url a:hover {
    text-decoration: underline;
}

.project-text {
    font-size: 14px;
    line-height: 1.5;
}

.project-entry .view-all {
    margin-top: auto;
    padding-top: 16px;
    font-weight: 700;
    align-self: flex-start;
}

.project-entry:hover .view-all::after {
    content: ' →';
}

/* Responsive styles */
@media (max-width: 768px) {
    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-image {
        margin-left: 0;
        margin-top: 10px;
    }
}