
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #f4f6f8;
      /*padding: 40px;*/
      color: #333;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
      align-items: stretch; /* Ensures equal height */
    }


    .left, .right {
      display: flex;
      flex-direction: column;
    }

    .left {
      flex: 2;
    }

    .right {
      flex: 1;
    }

    .card, .link-boxes {
      background: white;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.07);
      padding: 21px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      /*justify-content: space-between;*/
    }

    .link-box {
      background-color: #f0f4ff;
      padding: 20px;
      transition: background-color 0.3s ease;
      border-bottom: 1px solid #d6e0f0;
    }

    .link-box:last-child {
      border-bottom: none;
    }

    .link-box:hover {
      background-color: #e2ebff;
    }

    .link-box a {
      color: #2c3e50;
      font-weight: 600;
      font-size: 1.05em;
      text-decoration: none;
      display: block;
      margin-bottom: 6px;
    }

    .link-description {
      font-size: 0.95em;
      color: #555;
    }

    .right h3 {
      margin-bottom: 20px;
      color: #2c3e50;
      font-weight: 600;
    }

    .date-item {
      margin-bottom: 20px;
      padding: 15px;
      border-left: 4px solid #6c5ce7;
      background: #f8f9ff;
      border-radius: 8px;
      transition: transform 0.2s ease;
    }

    .date-item:hover {
      transform: scale(1.02);
    }

    .date-title {
      font-weight: 600;
      font-size: 1.05em;
      color: #2d3436;
    }

    .date {
      color: #636e72;
      font-size: 0.92em;
      margin-top: 4px;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .left, .right {
        flex: 1 1 100%;
      }

      .card, .link-boxes {
        padding: 20px;
      }
    }

