.block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.block-left-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.block-top-content {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.block-title {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0; /* Remove bottom margin */
}

.block-links {
    vertical-align: bottom;
    display: flex;
    flex-wrap: nowrap; /* Prevent the links from wrapping */
}

.block-link {
    font-size: 0.9rem;
    display: inline-block;

    background-color: var(--bg-primary-subtle);
    color: var(--text-color-light-subtle);
    text-decoration: none;
    padding: 2px 8px; /* Padding for better clickability */
    border: 1px solid var(--bg-primary-subtle);
    border-top: 0px;
    border-bottom: 0px;
    border-radius: 5px;
    white-space: nowrap; /* Prevent text wrapping inside links */
}

.block-link svg {
    vertical-align: text-bottom;
    width: 15px;
}

.block-date {
    margin-top: 0; /* Remove top margin */
}

.tech-stack p, .block-date {
    opacity: 0.7;
}

/* .tech-stack strong {
    opacity: 1;
} */

.block-image {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.5);
}

.block-images {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.block-images a {
    width: 45%;
}
