.bg-gradient-to-t {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
}

/* Form Select Polish */
.form-select.form-control-modern {
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* News Card Interaction */
.news-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1) !important;
}

.transition-scale {
    transition: transform 0.6s ease;
}

.news-card:hover .transition-scale {
    transform: scale(1.05);
}

/* Typography Utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-size: 16px;
}

.tiny {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Modal Polish */
.modal-content {
    border: none;
}
.modal-header .btn-close {
    opacity: 0.5;
    transition: opacity 0.2s;
}
.modal-header .btn-close:hover {
    opacity: 1;
}
.btn-custom-sm {
    padding: 10px;
    font-size: 14px;
    line-height: 1;
    border-radius: 0.2rem; 
  }
  
#announcementModal .modal-body img {
	float: left;
	width: 100% !important;
    height: 100% !important;
}  
#announcementModal .modal-title {
    font-size: 20px;
    width: 95%;
    font-weight: 600;
}
#announcementModal .cstcolsebtn {
    float: right;
    width: 5%;
    border: none;
    background: none;
    font-size: 30px;
}
#announcementModal .modal-dialog {
    margin: auto;
    max-width: 1000px;
}