.main {
    padding: 0 !important;
}

.article-info {
    padding: 1.5rem;
}

.article-intro {
    text-align: center;
    margin-bottom: 20px;
}

.article-intro p {
    font-size: 18px;
}

.article-content {
    margin-bottom: 20px;
    text-align: justify;
}

.article-content p {
    font-size: 16px;
}

.article-conclusion {
    margin-bottom: 20px;
}
  
.article-conclusion h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-style: italic;
    text-align: center;
}

.article-video {
    margin-bottom: 20px;
    text-align: center;
}

.article-video h4{
    font-size: 18px;
    margin-bottom: 10px;
}

.article-gallery ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.article-gallery a {
    display: flex;
    justify-content: center;    
}

.article-gallery img {
    max-width: 80%;
}

@media (min-width: 768px) {
    .article-gallery li {
        max-width: 40%;
    }
}

@media (min-width: 992px) {
    .article-gallery li {
        max-width: 30%;
    }
}

@media (min-width: 1200px) {
    .article-gallery li {
        max-width: 25%;
    }
}

@media (min-width: 1400px) {
    .article-gallery li {
        max-width: 18%;
    }
}


.article-cover {
    width: 100%;
    height: 300px;
    background-image: url('');
    background-size: cover;;
    background-position: center;
    margin-bottom: 20px;
    position: relative;
}
  
.article-cover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background-color: #7d7d7d9e;
    padding: 0 1rem;
    border-radius: 10px;
}

.article-cover-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.article-cover-text p {
    font-size: 18px;
}

.article-case{
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-case > div{
    box-shadow: inset 5px 3px 25px 8px gold;
    padding: 2rem;
    border-radius: 8px 75px 8px 75px;
}

.article-case > div > h4{
    text-decoration: underline wavy;
    color: #646464;
    font-size: x-large;
    padding-bottom: 1rem;
}

.article-case > div > p{
    font-size: large;
}

.article-inspiration{
    display: none;
    flex-direction: column;
}

.article-inspiration > p{
    height: 100%;
    display: flex;
    align-items: center;
}

.article-difficulty{
    display: none;
    flex-direction: column;
}

.article-difficulty > p{
    height: 100%;
    display: flex;
    align-items: center;
}

.article-feeling{
    display: none;
    flex-direction: column;
}

.article-feeling-ctn > p{
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

.article-feeling-ctn > img{
    width: 50%;
    height: 60%;
    margin-left: 25%
}