diff --git a/src/layouts/articles-index.njk b/src/layouts/articles-index.njk
index b7e0e27a12bdd97d98f16b9a868992ff2bf104a7..ddf313c2e0c328bd6e3b0c6d7f174314a5e90296 100644
--- a/src/layouts/articles-index.njk
+++ b/src/layouts/articles-index.njk
@@ -1,7 +1,7 @@
 {% extends "base.njk" %}
 {% block content %}
   {{content | safe}}
-  {% set categories = {"article": "Articles",  "study-paper": "Case Studies & White Papers", "thoughts": "Thought pieces"} %}
+  {% set categories = {"article": "Articles",  "study-paper": "Case Studies and White Papers", "thoughts": "Thought pieces"} %}
    {# create the UI #}
      <ul class="filter">
           {% for key, value in categories %}
diff --git a/static/css/theme-coko/main.css b/static/css/theme-coko/main.css
index 2edc22aa6b303e739c43d2e0fe20e5806d849453..cb2d5b7c414effe6c7044fc06e0040a52b24bbce 100644
--- a/static/css/theme-coko/main.css
+++ b/static/css/theme-coko/main.css
@@ -112,9 +112,9 @@ aside {
 .news aside,
 .blog-post aside {
   background: linear-gradient(
-    6deg,
-    rgba(255, 255, 255, 1) 58%,
-    rgba(150, 208, 206, 1) 100%
+  6deg,
+  rgba(255, 255, 255, 1) 58%,
+  rgba(150, 208, 206, 1) 100%
   );
   filter: drop-shadow(700px -15px 15px #62c8c4);
 }
@@ -381,6 +381,7 @@ ul.filter:before {
   font-style: normal;
   color: var(--color-gris);
   font-variant: small-caps;
+  text-transform: lowercase;
 }
 ul.filter button:hover {
   color: var(--color-secondary);
@@ -429,7 +430,13 @@ img.coko-partner {
 img.team-map {
   grid-column-end: span 2;
 }
+.team .board .wide {
+grid-column-start: 1;
+grid-column-end: 5; }
 
+.team .board .wide h2 {
+  max-width: 38ch;
+}
 /* Footer ----------------------- */
 
 .footer {
@@ -665,3 +672,7 @@ footer section.infos a:hover {
   grid-column: 1/5;
   margin-top: 3em;
 }
+
+.articles main .grid-item {
+  margin-top: 2em
+}