.featured-projects-tabs {
    width: 100%;
}

.tabs-navigation {
    display: flex;
    padding-bottom: 0.5rem;
    align-items: center;
}

.tab-button {
    /* padding: 0.75rem 1.5rem; */
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:hover {
    color: #333;
}

.tab-button.active {
    border-bottom-color: #DADAEA;
    border-bottom-width: 5px;
}

.tabs-content {
    position: relative;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.featured-project-image {
    width: 355px;
    height: 200px;
    overflow: hidden;
    /* border-radius: 8px; */
    margin-bottom: 1.5rem;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.tab-button.active .featured-project-image img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.featured-project-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* padding: 1.5rem; */
    background: #fff;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.featured-project-info h3 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    color: #333;
}

.featured-project-meta {
    display: flex; 
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
    margin-right: 50px;
}

.featured-project-meta p {
    margin: 0.5rem 0;
    color: #666;
    width: 100%;
}

.featured-project-excerpt {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 1rem 0;
    color: #555;
    line-height: 1.6;
    width: 50%;
}

.featured-project-title {
    font-family: "Space Grotesk", Sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.featured-project-details-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin-top: 1rem;
}

.featured-project-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33%;
    justify-content: flex-start;
    text-align: center;
}

.read-more {
    display: inline-block;
    padding: 12px;
    background-color: #D2ED35;
    color: #474756;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    width: 90px;
    text-align: center;
}

.read-more:hover {
    background-color: #fff;
    border: 1px solid #D2ED35;
    width: 100px;
}

.featured-project-vertical-line {
    border-right: 1px solid #DADAEA;
    height: 120px; 
    margin: 0 10px;
}

@media (max-width: 768px) {
    .tabs-navigation {
        flex-direction: row;
    }

    .tab-button {
        width: 30%;
        text-align: left;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .tab-button.active {
        border-color: #D2ED35;
        background: rgba(210, 237, 53, 0.1);
    }

    .featured-project-image {
        height: 56px;
        border-radius: 8px;
        overflow: hidden;
        width: auto;
    }

    .featured-project-image img {
        width: 230px;
        height: 100%;
        object-fit: cover;
    }

    .featured-project-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .featured-project-info h3 {
        font-size: 1.5rem;
        color: #474756;
        margin-bottom: 0.5rem;
    }

    .featured-project-vertical-line {
        border-right: 1px solid #DADAEA;
        height: 60px;
        margin: 0 10px;
      }

      .featured-project-meta {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1rem;
        margin-right: 0;
      }

      .featured-project-excerpt {
        width: 100%;
      }

      .featured-project-details-container {
        gap: 0;
        justify-content: space-evenly;
      }

      .featured-project-details p {
        font-size: 14px;
        text-align: center;
      }
} 