.main-container {
    padding: 0 var(--space-36);
    overflow-x: hidden;

    .single-project-container {
        max-width: 1296px;
        margin: var(--space-64) auto;

        .project-content {
            display: flex;
            flex-direction: column;
            gap: var(--space-64);

            .breadcrumbs {
                display: flex;
                align-items: center;
                gap: 6px;

                span {
                    color: var(--text-secondary);
                    font-family: BOG, sans-serif;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 20px;

                    &.active {
                        color: #262626;
                        font-family: BOG, sans-serif;
                        font-size: 14px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: 20px;
                    }

                    a {
                        text-decoration: none;
                    }
                }

                img {
                    height: 14px;
                }
            }

            .project-inner-content {
                max-width: 856px;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                gap: var(--space-48);

                .project-head {
                    display: flex;
                    flex-direction: column;
                    gap: var(--space-32);

                    .project-info {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;

                        span {
                            color: var(--text-secondary);
                            font-family: BOG, sans-serif;
                            font-size: 12px;
                            font-style: normal;
                            font-weight: 500;
                            line-height: 20px;
                        }

                        .category-date {
                            display: flex;
                            align-items: center;
                            gap: var(--space-12);

                            .category {
                                background-color: var(--invert-component-tr-70);
                                padding: 6px 12px;
                                border-radius: var(--border-radius-100);
                                color: var(--text-primary);
                            }
                        }

                        .reading-time {
                            display: flex;
                            align-items: center;
                            gap: var(--space-8);
                        }
                    }

                    .project-title h1{
                        color: var(--text-primary);
                        font-family: BOG, sans-serif;
                        font-size: 32px;
                        font-style: normal;
                        font-weight: 700;
                        line-height: 48px;
                    }

                    .project-sub-title {
                        color: var(--text-primary);
                        font-family: BOG, sans-serif;
                        font-size: 18px;
                        font-style: normal;
                        font-weight: 500;
                        line-height: 30px;
                    }
                }

                .project-image {
                    img {
                        width: 100%;
                        max-height: 366px;
                        object-fit: cover;
                        object-position: center;
                        border-radius: var(--border-radius-20);
                    }
                }

                .project-description {
                    color: var(--text-primary);
                    font-family: BOG, sans-serif;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 24px;

                    p {
                        margin-bottom: var(--space-32);

                        &:last-child {
                            margin-bottom: 0;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    .main-container .single-project-container {
        .project-content {
            gap: var(--space-48);

            .project-inner-content {
                max-width: unset;
                width: 100%;
            }
        }
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 0 var(--space-28);

        .single-project-container {
            .project-content {
                .breadcrumbs {
                    padding: 0 var(--space-8);
                }

                .project-inner-content {
                    max-width: unset;
                    width: 100%;

                    .project-head {
                        .project-info .reading-time {
                            display: none;
                        }

                        .project-sub-title {
                            font-size: 16px;
                        }
                    }

                    .project-image {
                        img {
                            width: 100%;
                            height: 500px;
                            margin: 0 auto;
                        }
                    }

                    .project-description {
                        font-weight: 400;
                        line-height: 24px;
                    }
                }
            }
        }
    }
}

@media (max-width: 600px) {
    .main-container {
        padding: 0 var(--space-24);

        .single-project-container {
            margin: var(--space-48) auto;

            .project-content {
                gap: var(--space-32);

                .breadcrumbs {
                    padding: 0;
                }

                .project-inner-content {
                    gap: var(--space-32);

                    .project-head {
                        gap: var(--space-16);

                        .project-title h1{
                            font-size: 22px;
                            line-height: 34px
                        }
                    }

                    .project-image img {
                        width: 100%;
                        height: 245px;
                    }
                }
            }
        }
    }
}