.blog-individual {
    padding: 56px 0 80px 0;
    position: relative;

    @media screen and (max-width:768px) {
        padding: 48px 0 56px 0;
    }

    .socialIcon-flex {
        display: flex;
        flex-direction: column;
        position: fixed;
        right: 0;
        top: 45.7%;

        @media screen and (max-width:768px) {
            top: 170px;
            flex-direction: row;
            right: 0;
            left: 0;
            margin: 0 auto;
            justify-content: center;
            position: absolute;
        }

        @media screen and (max-width:767px) {
            top: 210px;
        }

        @media screen and (max-width:414px) {
            top: 174px;
        }

        @media screen and (max-width:412px) {
            top: 208px;
        }

        @media screen and (max-width:320px) {
            top: 246px;
        }

        a {
            margin: 0 12px 16px 0;
            display: inline-block;

            @media screen and (max-width:768px) {
                margin: 0 16px 0 0;

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

            img {
                width: 40px;
                height: 40px;
                margin: 0;
            }
        }
    }

    .title {
        text-align: center;
        margin: 0 0 48px 0;

        @media screen and (max-width:768px) {
            margin: 0 0 96px 0;
        }

        h2 {
            font-size: 40px;
            font-weight: 700;
            color: $secondary-color;
            margin-bottom: 16px;
            font-family: $font-family-sora;

            @media screen and (max-width:768px) {
                font-size: 24px;
            }
        }

        span {
            font-size: 16px;
            font-weight: 400;
            color: $color-primary;
            display: inline-block;
        }
    }

    .img {
        img {
            width: 100%;
            height: 520px;
            margin-bottom: 40px;
            object-position: center;
            object-fit: cover;

            @media screen and (max-width:768px) {
                height: 188px;
                border-radius: 4px;
                margin-bottom: 32px;
            }
        }
    }

    p {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 24px;
        color: $color-dark;

        @media screen and (max-width:768px) {
            font-size: 16px;
        }

        a {
            color: $color-primary;
            text-decoration: underline;
        }
    }

    h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
        color: $color-dark;

        @media screen and (max-width:768px) {
            font-size: 18px;
        }
    }

    img {
        width: 100%;
        height: 330px;
        object-fit: cover;
        object-position: center;
        margin-bottom: 32px;

        @media screen and (max-width:768px) {
            height: 148px;
            border-radius: 4px;
        }
    }

    h5 {
        font-size: 20px;
        font-weight: 700;
        color: $color-dark;
        margin-bottom: 8px;

        @media screen and (max-width:768px) {
            font-size: 16px;
        }
    }

    ul {
        margin-bottom: 0;

        li {
            list-style-type: disc;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 8px;
            color: $color-dark;

            @media screen and (max-width:768px) {
                font-size: 16px;
            }

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

.individual-resource {
    padding: 80px 0;
    background-color: #f5f8fa;

    @media screen and (max-width:768px) {
        padding: 56px 0;
    }

    .title-flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 56px;

        @media screen and (max-width:767px) {
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 32px;
        }

        h2 {
            font-size: 32px;
            font-weight: 700;
            color: $color-dark;
            font-family: $font-family-sora;

            @media screen and (max-width:768px) {
                font-size: 24px;
            }
        }

        a {
            display: inline-block;
            color: $color-primary;
            font-size: 18px;
            font-weight: 700;
        }
    }

    .swiper {
        @media screen and (max-width:768px) {
            overflow: visible;
        }

        .swiper-wrapper {
            .indi-card {
                .img {
                    img {
                        width: 100%;
                        height: 100%;
                        border-radius: 8px;
                    }
                }

                h6 {
                    font-size: 18px;
                    font-weight: 600;
                    color: $color-dark;
                    margin: 16px 0 0 0;
                    height: 64px;
                    overflow: hidden;
                    line-height: 1.8;

                    @media screen and (max-width:768px) {
                        font-size: 16px;
                    }
                }
            }
        }
    }
}