@charset "utf-8";

.some-important-info { margin-bottom: 10px; padding: 20px 10px; max-width: 680px; color: rgb(255, 255, 255); background-color: rgb(0, 85, 153); border-radius: 5px; margin-left: auto !important; margin-right: auto !important; }

.some-important-info:has(img) { display: flex; gap: 20px; align-items: center; }

.some-important-info > a { flex-shrink: 0; max-width: 100px; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 50%; line-height: 0; }

.some-important-info img { width: 100%; height: 100%; object-fit: cover; }

.some-important-info p { font-size: 22px; font-weight: 500; margin: 0px !important; }

@media (max-width: 576px) {
  .some-important-info:has(img) { flex-direction: column; align-items: center; }
}