/* Project 05 Details Section */
.project-details-block {
    background-color: transparent;
    padding: 0 var(--variable-collection-global-side-padding) 6rem;
    max-width: 80rem;
    margin: 0 auto;
}

.details-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4rem;
}

.details-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.details-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .details-info {
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
    }
}

.details-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .details-column:nth-child(1) {
        flex: 1.5;
        padding-right: 2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .details-column:nth-child(2) {
        flex: 1.2;
        padding-left: 2rem;
        padding-right: 2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .details-column:nth-child(3) {
        flex: 1.2;
        padding-left: 2rem;
    }
}

.details-title {
    font-family: var(--font-mono, "JetBrains Mono", monospace);
    font-size: 0.75rem;
    color: #cc5a35;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.5rem 0;
}

.details-column:first-child .details-title {
    color: var(--color-stark-white, #ffffff);
}

.details-desc {
    font-family: var(--font-sans, "Montserrat", sans-serif);
    font-size: 0.875rem;
    color: #c4c7c8;
    line-height: 1.6;
    margin: 0;
}

/* Project 05 Technical Section */
.project-technical-block {
    background-color: #1a1a1c;
    padding: 6rem var(--variable-collection-global-side-padding);
}

.technical-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .technical-container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
    .technical-image {
        flex: 1;
    }
    .technical-content {
        flex: 1.2;
    }
}

.technical-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.technical-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.technical-title {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 2rem 0;
}

.technical-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.technical-icon {
    flex-shrink: 0;
}

.technical-subtitle {
    font-family: var(--font-mono, "JetBrains Mono", monospace);
    font-size: 0.75rem;
    color: #cc5a35;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.technical-desc {
    font-family: var(--font-sans, "Montserrat", sans-serif);
    font-size: 0.875rem;
    color: #c4c7c8;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.technical-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 0 2rem 0;
}

.technical-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .technical-list {
        flex-direction: row;
        gap: 2rem;
    }
    .technical-list ul {
        flex: 1;
    }
}

.technical-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.technical-list li {
    font-family: var(--font-sans, "Montserrat", sans-serif);
    font-size: 0.875rem;
    color: #c4c7c8;
    line-height: 1.5;
    position: relative;
    padding-left: 1rem;
}

.technical-list li::before {
    content: "•";
    color: #cc5a35;
    position: absolute;
    left: 0;
    top: -0.1rem;
    font-size: 1.2rem;
}
