diff --git a/opentech/apply/funds/templates/funds/includes/round-block-listing.html b/opentech/apply/funds/templates/funds/includes/round-block-listing.html
index 0c4fc9625b50ffbb9da14c63b2e28656d4c484fb..bbc0de45008ce1cb53db17c020dc06e60126aef6 100644
--- a/opentech/apply/funds/templates/funds/includes/round-block-listing.html
+++ b/opentech/apply/funds/templates/funds/includes/round-block-listing.html
@@ -2,7 +2,7 @@
     {% for round in rounds %}
         {% if forloop.counter0 < 5 %}
             <li class="round-block__item">
-                <h5 class="round-block__title">{{ round }}</h5>
+                <a href="{% url 'apply:rounds:detail' pk=round.pk %}" class="round-block__title">{{ round }}</a>
                 <p> {{ round.fund|default_if_none:"-" }} </p>
                 <p class="round-block__date">
                     {% if round.end_date %}
diff --git a/opentech/static_src/src/sass/apply/components/_round-block.scss b/opentech/static_src/src/sass/apply/components/_round-block.scss
index 3e5e49227cc55351e3023364c03762adb5ff436e..6d0a19be80d47b7acec7a8e28b65e10fb1ae5a36 100644
--- a/opentech/static_src/src/sass/apply/components/_round-block.scss
+++ b/opentech/static_src/src/sass/apply/components/_round-block.scss
@@ -23,8 +23,6 @@
 
             &:hover {
                 background-color: $color--light-grey;
-                border-right: 1px solid $color--light-grey;
-                border-left: 1px solid $color--light-grey;
             }
 
             // item spacing
@@ -78,6 +76,8 @@
     }
 
     &__title {
+        color: $color--default;
+        font-size: map-get($font-sizes, epsilon);
         font-weight: $weight--semibold;
     }