diff --git a/Website/templates/main.html b/Website/templates/main.html
index 2fad11f..16690ae 100644
--- a/Website/templates/main.html
+++ b/Website/templates/main.html
@@ -102,6 +102,22 @@
border: 1px solid #3a6970;
}
+ .hero-logo-strip {
+ margin-bottom: 0.7rem;
+ display: grid;
+ grid-template-columns: repeat(3, minmax(0, 1fr));
+ gap: 0.4rem;
+ }
+
+ .hero-logo-strip img {
+ width: 100%;
+ height: 64px;
+ object-fit: cover;
+ border-radius: 8px;
+ border: 1px solid #4f7c82;
+ background: #ffffff;
+ }
+
.hero-card h3 {
font-size: clamp(1rem, 1.8vw, 1.35rem);
margin-bottom: 0.55rem;
@@ -352,6 +368,10 @@
.logo-grid {
grid-template-columns: 1fr;
}
+
+ .hero-logo-strip {
+ grid-template-columns: 1fr;
+ }
}
{% endblock %}
@@ -376,6 +396,11 @@