.security-bulletin-container  * {
    hyphens: none !important;
    word-break: normal !important;
    font-family: 'Roboto' !important;

}
.security-bulletin-container {
    display: flex;
    flex-direction: column;
}

.security-bulletin-container p {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

.security-bulletin-header-content {
    display: flex;
    flex-direction: column;
    margin-top: -5px;
}

.security-bulletin-header-content h3 {
    font-size: 16px;
    margin-block-end: 0 !important;
    margin-block-start: 0 !important
}

.security-bulletin-header-content p {
    font-size: 14px;
    font-weight: 300;
    margin-block-start: 0 !important;
}

.bulletins-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 16px !important;
  background-color: #0A66C2 !important;
  color: white !important;
  border: none !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  color: white !important;
}

.bulletins-btn svg {
  width: 24px;
  height: 24px;
}

.bulletins-btn:hover {
  background-color: #054c90;
}


.security-bulletin-image-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-bulletin-image-container li {
    margin: 10px;
}


.bulletin-text h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}


.bulletin-text p {
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    margin-block-start: 0 !important;
}

/* Ensure the link itself expands to fill the bulletin-item */
.security-bulletin-image-container ul li a {
    display: block;
    text-decoration: none; /* Remove underline if desired */
    color: inherit; /* Inherit text color from parent if needed */
}

/* Optional: Add hover effect to indicate clickability */
.security-bulletin-image-container ul li a:hover .bulletin-item {
    background-color: #f8f8f8; /* Light grey background on hover */
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow on hover */
    transform: translateY(-2px); /* Slight lift effect */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Optional: Add a slight scale or shadow on hover for visual feedback */
.security-bulletin-image-container ul li a:hover .bulletin-item img {
    /* Keeping transformation for consistency with previous request, can remove if not desired */
    transform: scale(1.02); /* Slightly enlarge image */
    transition: transform 0.3s ease;
}

.bulletin-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.bulletin-item:hover {
    background-color: #f8f8f8;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.bulletin-item img {
    width: 120px !important;
    height: 82px !important;
    object-fit: cover;
    border-radius: 10%;
    flex-shrink: 0;
    display: block;
}

.bulletin-item a:focus,
.bulletin-item a:active{
  outline: none !important;
  box-shadow: none !important;
}
