#article-top-title{
    margin-bottom: 50px;
    margin-top: 50px;
    text-align: center;
    
}

#article-top-title +p {
    margin: 0 auto;
    max-width: max-content;
    border-bottom: solid 2px transparent;
    border-image: linear-gradient(to left, #fffd6a, #fffb01, #23e8de, #00bfff) 2;
    padding-bottom: 5px;
}

#article-container {
    max-width: 80%;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

article.article-card {
    display: flex;
    gap: 16px; 
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
    transition: box-shadow .3s ease, transform .2s ease;
}

article.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);

}

.article-left{
    flex:4;
    width: 100%;
    height: 30vh;
}

.article-right{
    flex:6;
}

.article-left img{
    object-fit: cover;
    width: 100%;
    height:100%;
}

/* Article page */
#article-title{
    text-align: center;
    margin-bottom: 30px;
}

p#update-date {
    border-bottom: solid 2px transparent;
    border-image: linear-gradient(to left, #fffd6a, #fffb01, #23e8de, #00bfff) 2;
    padding-bottom: 15px;
}

#article-main-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
  line-height: 1.8;
}

.article-header h1 {
  font-size: 1.75rem;
  margin-top: 10px;
  line-height: 1.4;
}

.article-body h2 {
  font-size: 1.35rem;
  border-bottom: 2px solid #00bfff;
  padding-bottom: 8px;
  margin-top: 40px;
  margin-bottom: 20px;
}


.article-image-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0;
  background-color: #fff;
}

.article-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.image-card-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-download, .btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00bfff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  transition: transform .2s ease;
}

.btn-download:hover, .btn-primary:hover {
  transform: translateY(-3px);
  
}

.cta-box {
  text-align: center;
  margin-top: 24px;
}

.note a{
  transition: color .2s ease;
}

.note a:hover{
  color:#00bfff;
}


@media (max-width: 1023px) { 
    #article-container {
        max-width: 100%;
    }
}