/* Main Content Layout */
.content {
    display: flex;
    gap: 128px;
    width: 100%;
    max-width: 100%;
}
@media (max-width: 1080px) {
    .content {
        gap: 64px;
    }
}
@media (max-width: 780px) {
    .content {
        flex-direction: column-reverse;
        gap: 48px;
    }
}
  
/* Left Column */
.left-column {
    /* width: 440px; */
    flex-basis: 440px; /* Acts as a fixed width in flex layouts */
    flex-shrink: 0;
}
@media (max-width: 1080px) {
    .left-column {
        flex-basis: 320px;
    }
}
  
.intro-text {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 48px;
}
  
.articles-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 12px;
}
  
.article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
.article-list li {
    font-size: 15px;
    margin-bottom: 8px;
}
  
.article-list li a {
    color: #F4F3C6;
    text-decoration: underline;
}
  
.article-list li:last-child {
    margin-top: 12px;
}
  
/* Right Column */
.right-column {
    flex-grow: 1; /* Allows the right column to expand */
    min-width: 0; /* Ensures it doesn’t force overflow by default */
    overflow-wrap: break-word; /* Breaks long content gracefully */
}
  
.project-item {
    display: flex;
    align-items: center;
    height: 90px;
    gap: 16px;
    margin-bottom: 16px;
    width: 100%;
    /* max-width: 660px; */
}
  
.project-item img {
    width: 120px;
    height: 90px;
    object-fit: cover;
}
  
.project-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;

    flex-grow: 1; /* Allows the right column to expand */
    min-width: 0; /* Ensures it doesn’t force overflow by default */
    overflow-wrap: break-word; /* Breaks long content gracefully */
}
  
.project-details h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}
  
.project-details p {
    font-size: 13px;
    margin: 4px 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */

    max-width: 100%;
    flex-grow: 1;


    /* max-height: 1.3em; */ /* 3 lines of text, change as needed */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Limits to 3 lines */
    line-clamp: 3;
    text-overflow: ellipsis;


}
  
.project-details a {
    font-size: 13px;
    color: #F4F3C6;
    text-decoration: underline;
    align-self: start;
}
  
.project-details a:hover {
    color: #ff4cc3;
}