* { 
    box-sizing: border-box; 
    padding: 0;
    margin: 0;
}
  
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: #f3f4f6;
    color: #222;
}

.header-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-container {
    max-width: 90%;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.share-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-buttons a {
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.share-buttons a.whatsapp {
    background-color: #25D366;
}

.share-buttons a.facebook {
    background-color: #1877F2;
}

.share-buttons a.twitter {
    background-color: #1DA1F2;
}

.share-buttons a.linkedin {
    background-color: #0077B5;
}

.share-buttons a.whatsapp:hover {
    background-color: #1DA851;
}

.share-buttons a.facebook:hover {
    background-color: #155DB2;
}

.share-buttons a.twitter:hover {
    background-color: #1681C2;
}

.share-buttons a.linkedin:hover {
    background-color: #005983;
}

.article-title {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 8px;
}

.article-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 32px;
}

.article-content p {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 24px;
}

.image-inline {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin: 24px 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    display: block;
}

.image-group-wrapper {
    max-width: 100%;
    overflow: hidden;
}

.image-side-by-side {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.image-side-by-side img {
    flex: 1 1 calc(50% - 8px);
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.back-link {
    display: inline-block;
    background-color: #b82020;
    padding: 10px;
    width: 100%;
    margin-top: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    color: #ffffff;
    border-radius: 20px;
}

.back-link:hover{
    background-color: #222;
}

.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background-color: white;
  border-radius: 10px;

  padding: 20px;
  max-width: 280px;
  text-align: center;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card ul {
  list-style: square;
  text-align: left;
  padding-left: 20px;
}

.card li {
  margin-bottom: 5px;
  color: #444;
}

@media (max-width: 768px) {
    .article-title { 
        font-size: 24px; 
        margin-top: 30px;
    }

    .image-side-by-side img {
      flex: 1 1 100%;
      height: 200px;
    }

    .share-buttons {
      position: static;
      justify-content: flex-end;
      margin-bottom: 20px;
    }
}